基于
answer
__call
方法,以便具有将存储库作为服务调用的通用方法:
namespace AppBundle\Services;
use Doctrine\ORM\EntityManagerInterface;
class RepositoryServiceAdapter
{
private $repository=null;
/**
* @param EntityManagerInterface the Doctrine entity Manager
* @param String $entityName The name of the entity that we will retrieve the repository
*/
public function __construct(EntityManagerInterface $entityManager,$entityName)
{
$this->repository=$entityManager->getRepository($entityName)
}
public function __call($name,$arguments)
{
if(empty($arguments)){ //No arguments has been passed
$this->repository->$name();
} else {
//@todo: figure out how to pass the parameters
$this->repository->$name();
}
}
}
存储库方法将具有以下形式:
public function aMethod($param1,$param2)
{
//Some magic is done here
}
$arguments
public function __call($name,$arguments)
{
$this->repository->$name($argument[0],$argument[1],$argument[2]);
}
但这似乎不切实际,对我来说不是一个具体的解决方案,因为一个方法可以有多个参数。我想我需要解决以下问题:
-
-
如何在迭代数组时传递参数
?