Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
1 | <?php |
||
47 | 13 | private function validateDirection($direction) |
|
48 | { |
||
49 | 13 | $availableDirections = array(self::ASC, self::DESC); |
|
50 | 13 | if(! in_array($direction, $availableDirections)) |
|
51 | 13 | { |
|
52 | 1 | throw new \InvalidArgumentException(sprintf('Unsupported ORDER BY direction "%s"', $direction)); |
|
53 | } |
||
54 | 12 | } |
|
55 | } |
||
56 |