| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 11 |
| Ratio | 100 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | View Code Duplication | public function findOneBySubdomain($subdomain) |
|
| 28 | { |
||
| 29 | return $this |
||
| 30 | ->createQueryBuilder('t') |
||
| 31 | ->select('t', 'o') |
||
| 32 | ->leftJoin('t.organization', 'o') |
||
| 33 | ->where('t.subdomain = :subdomain') |
||
| 34 | ->setParameter('subdomain', $subdomain) |
||
| 35 | ->getQuery() |
||
| 36 | ->getOneOrNullResult(); |
||
| 37 | } |
||
| 38 | |||
| 67 |