Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
29 | public function loadApiKeyInfoApi() |
||
30 | { |
||
31 | $qb = $this->createQueryBuilder('a'); |
||
32 | $q = $qb->select('a') |
||
33 | ->where( |
||
34 | 'a.section = :section and a.name = :name' |
||
35 | ) |
||
36 | ->setParameter('section', 'account') |
||
37 | ->setParameter('name', 'APIKeyInfo') |
||
38 | ->getQuery(); |
||
39 | |||
40 | return $q->getSingleResult(); |
||
41 | } |
||
42 | } |
||
43 |