Passed
Push — master ( ca9906...036635 )
by Jeremy
09:50 queued 12s
created

ClientRepository::findOneBy()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 3
nc 2
nop 2
dl 0
loc 9
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Wallabag\ApiBundle\Repository;
4
5
use Doctrine\ORM\EntityRepository;
6
7
class ClientRepository extends EntityRepository
8
{
9
    public function findOneBy(array $criteria, array $orderBy = null)
10
    {
11
        if (!empty($criteria['id'])) {
12
            // cast client id to be an integer to avoid postgres error:
13
            // "invalid input syntax for integer"
14
            $criteria['id'] = (int) $criteria['id'];
15
        }
16
17
        return parent::findOneBy($criteria, $orderBy);
18
    }
19
}
20