| 1 | <?php |
||
| 21 | class FileStorageTest extends \PHPUnit_Framework_TestCase |
||
| 22 | { |
||
| 23 | 1 | public function testConstructor() |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @expectedException \LogicException |
||
| 30 | */ |
||
| 31 | 1 | public function testConstructorInvalidLoader() |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @expectedException \LogicException |
||
| 38 | */ |
||
| 39 | 1 | public function testConstructorEmptyArray() |
|
| 43 | } |
||
| 44 |
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: