| 1 | <?php |
||
| 23 | class ServiceEntityRepository extends EntityRepository implements ServiceEntityRepositoryInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @param string $entityClass The class name of the entity this repository manages |
||
| 27 | */ |
||
| 28 | public function __construct(ManagerRegistry $registry, $entityClass) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param EntityManagerInterface $em |
||
| 37 | * |
||
| 38 | * @return ServiceEntityRepository |
||
| 39 | */ |
||
| 40 | public function setEntityManager(EntityManagerInterface $em) |
||
| 46 | } |
||
| 47 |
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: