| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class UncheckedOrderBy |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $orderBy; |
||
| 28 | |||
| 29 | public function __construct(string $orderBy) |
||
| 30 | { |
||
| 31 | $this->orderBy = $orderBy; |
||
| 32 | } |
||
| 33 | |||
| 34 | public function getOrderBy() : string |
||
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return string |
||
| 41 | */ |
||
| 42 | public function __toString() |
||
| 47 |