| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 11 |
| Ratio | 100 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 42 | View Code Duplication | public function findOneByCode($code) |
|
| 43 | { |
||
| 44 | return $this |
||
| 45 | ->createQueryBuilder('t') |
||
| 46 | ->select('t', 'o') |
||
| 47 | ->leftJoin('t.organization', 'o') |
||
| 48 | ->where('t.code = :code') |
||
| 49 | ->setParameter('code', $code) |
||
| 50 | ->getQuery() |
||
| 51 | ->getOneOrNullResult(); |
||
| 52 | } |
||
| 53 | |||
| 67 |