Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
35 | public function findOneByShippingMethod(ShippingMethodInterface $shippingMethod): ?ShippingGatewayInterface |
||
36 | { |
||
37 | return $this->createQueryBuilder('o') |
||
38 | ->where(':shippingMethod MEMBER OF o.shippingMethods') |
||
39 | ->setParameter('shippingMethod', $shippingMethod) |
||
40 | ->getQuery() |
||
41 | ->getOneOrNullResult() |
||
42 | ; |
||
45 |