| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 9 | public function findOneMenuByMachineNameAndLocale($machineName, $locale) |
||
| 10 | { |
||
| 11 | return $this->createQueryBuilder('m') |
||
| 12 | ->join('m.items', 'i') |
||
| 13 | ->where('m.machineName = :machineName') |
||
| 14 | ->andWhere('m.locale = :locale') |
||
| 15 | ->setParameters(array( |
||
| 16 | 'machineName' => $machineName, |
||
| 17 | 'locale' => $locale, |
||
| 18 | )) |
||
| 19 | ->getQuery() |
||
| 20 | ->getSingleResult() |
||
| 21 | ; |
||
| 22 | } |
||
| 23 | } |
||
| 24 |