| 1 | <?php |
||
| 16 | class EntityStoreInstallerTest extends \PHPUnit_Framework_TestCase { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var EntityStoreInstaller |
||
| 20 | */ |
||
| 21 | private $storeInstaller; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var AbstractSchemaManager |
||
| 25 | */ |
||
| 26 | private $schemaManager; |
||
| 27 | |||
| 28 | public function setUp() { |
||
| 37 | |||
| 38 | public function testInstallationAndRemoval() { |
||
| 49 | |||
| 50 | public function testStoresPage() { |
||
| 53 | |||
| 54 | } |
||
| 55 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: