Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function getByClassname($classname) |
||
21 | { |
||
22 | $this->getInstance() |
||
23 | ->join('Victoire\Bundle\ORMBusinessEntityBundle\Entity\ORMBusinessEntity', 'be', Expr\Join::WITH, 'businessproperty.businessEntity = be.id') |
||
24 | ->where('be.class = :classname') |
||
25 | ->setParameter(':classname', $classname); |
||
26 | |||
27 | return $this; |
||
28 | } |
||
29 | |||
43 |