diff options
Diffstat (limited to 'tests/MySqlShimTest.php')
-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 = '') |