for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Doctrine Bundle
*
* The code was originally distributed inside the Symfony framework.
* (c) Fabien Potencier <[email protected]>
* (c) Doctrine Project, Benjamin Eberlei <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Doctrine\Bundle\DoctrineBundle\Repository;
use Doctrine\Common\Persistence\ManagerRegistry;
use Doctrine\ORM\EntityRepository;
/**
* Optional EntityRepository base class with a simplified constructor (for autowiring).
* To use in your class, inject the "registry" service and call
* the parent constructor. For example:
* class YourEntityRepository extends ServiceEntityRepository
* {
* public function __construct(RegistryInterface $registry)
* parent::__construct($registry, YourEntity::class);
* }
* @author Ryan Weaver <[email protected]>
class ServiceEntityRepository extends EntityRepository implements ServiceEntityRepositoryInterface
{
* @param ManagerRegistry $registry
* @param string $entityClass The class name of the entity this repository manages
public function __construct(ManagerRegistry $registry, $entityClass)
$manager = $registry->getManagerForClass($entityClass);
parent::__construct($manager, $manager->getClassMetadata($entityClass));
$manager
object<Doctrine\Common\P...nce\ObjectManager>|null
object<Doctrine\ORM\EntityManager>
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:
function acceptsInteger($int) { } $x = '123'; // string "123" // Instead of acceptsInteger($x); // we recommend to use acceptsInteger((integer) $x);
}
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: