1 | <?php |
||
36 | class ServiceEntityRepository extends EntityRepository implements ServiceEntityRepositoryInterface |
||
37 | { |
||
38 | /** |
||
39 | * @param ManagerRegistry $registry |
||
40 | * @param string $entityClass The class name of the entity this repository manages |
||
41 | */ |
||
42 | public function __construct(ManagerRegistry $registry, $entityClass) |
||
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: