1 | <?php |
||
20 | final class SuiteLoader implements SuiteLoaderInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var FixtureLoaderInterface |
||
24 | */ |
||
25 | private $fixtureLoader; |
||
26 | |||
27 | /** |
||
28 | * @param FixtureLoaderInterface $fixtureLoader |
||
29 | */ |
||
30 | public function __construct(FixtureLoaderInterface $fixtureLoader) |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function load(SuiteInterface $suite) |
||
48 | } |
||
49 |
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: