| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 81 | public function setDirection($direction) |
||
| 82 | { |
||
| 83 | if (!in_array($direction, array(self::ASC, self::DESC))) { |
||
| 84 | throw new \InvalidArgumentException( |
||
| 85 | "Specified direction '$direction' is not allowed. Only ASC or DESC are allowed." |
||
| 86 | ); |
||
| 87 | } |
||
| 88 | $this->direction = $direction; |
||
| 89 | |||
| 90 | return $this; |
||
| 91 | } |
||
| 92 | } |
||
| 93 |