Some PHP-CS fixes
This commit is contained in:
parent
7b758493a3
commit
2abb459770
1 changed files with 3 additions and 3 deletions
|
@ -61,8 +61,8 @@ class EntityRepository implements ObjectRepository
|
||||||
public function __construct($em, Mapping\ClassMetadata $class)
|
public function __construct($em, Mapping\ClassMetadata $class)
|
||||||
{
|
{
|
||||||
$this->_entityName = $class->name;
|
$this->_entityName = $class->name;
|
||||||
$this->_em = $em;
|
$this->_em = $em;
|
||||||
$this->_class = $class;
|
$this->_class = $class;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -100,7 +100,7 @@ class EntityRepository implements ObjectRepository
|
||||||
$queryMapping = $this->_class->getNamedNativeQuery($queryName);
|
$queryMapping = $this->_class->getNamedNativeQuery($queryName);
|
||||||
$rsm = new Query\ResultSetMappingBuilder($this->_em);
|
$rsm = new Query\ResultSetMappingBuilder($this->_em);
|
||||||
$rsm->addNamedNativeQueryMapping($this->_class, $queryMapping);
|
$rsm->addNamedNativeQueryMapping($this->_class, $queryMapping);
|
||||||
|
|
||||||
return $this->_em->createNativeQuery($queryMapping['query'], $rsm);
|
return $this->_em->createNativeQuery($queryMapping['query'], $rsm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue