diff options
author | Davey Shafik <me@daveyshafik.com> | 2017-01-08 15:20:32 -0800 |
---|---|---|
committer | Davey Shafik <me@daveyshafik.com> | 2017-01-08 15:44:38 -0800 |
commit | e5d35176a170f133ec54a64c8f4527fb2f53016e (patch) | |
tree | 5ee57a15112b27623f244fd163872d69fcac0c03 | |
parent | 9d6716201f0e26256002d476897aeb4dc8ed376f (diff) | |
download | php7-mysql-shim-e5d35176a170f133ec54a64c8f4527fb2f53016e.zip php7-mysql-shim-e5d35176a170f133ec54a64c8f4527fb2f53016e.tar.gz php7-mysql-shim-e5d35176a170f133ec54a64c8f4527fb2f53016e.tar.bz2 |
Add comments
-rw-r--r-- | tests/MySqlShimTest.php | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/tests/MySqlShimTest.php b/tests/MySqlShimTest.php index a7e4345..c2ebfe8 100644 --- a/tests/MySqlShimTest.php +++ b/tests/MySqlShimTest.php @@ -11,10 +11,24 @@ namespace Dshafik\MySQL\Tests; class MySqlShimTest extends \PHPUnit_Framework_TestCase { - static $host; - static $container; - static $bin = []; + /** + * @var string MySQL Host + */ + static protected $host; + + /** + * @var string Docker container + */ + static protected $container; + /** + * @var array Location of binaries + */ + static protected $bin = []; + + /** + * @var \SebastianBergmann\Environment\Runtime + */ protected $runtime; public function __construct($name = null, array $data = [], $dataName = '') |