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:20:32 -0800 |
commit | b20c8c6569c2a3144c311a40b3a2e9a658468949 (patch) | |
tree | 5ee57a15112b27623f244fd163872d69fcac0c03 | |
parent | da056d167962d653af30510a8a02f055da519c7b (diff) | |
download | php7-mysql-shim-b20c8c6569c2a3144c311a40b3a2e9a658468949.zip php7-mysql-shim-b20c8c6569c2a3144c311a40b3a2e9a658468949.tar.gz php7-mysql-shim-b20c8c6569c2a3144c311a40b3a2e9a658468949.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 = '') |