Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
10 | final class NotAddressableQueryException extends LogicException implements ExceptionInterface |
||
11 | { |
||
12 | |||
13 | private $query; |
||
14 | |||
15 | public function __construct(QueryInterface $query, Throwable $previous = null) |
||
16 | { |
||
17 | $this->query = $query; |
||
18 | parent::__construct("Query is not addressable", 0, $previous); |
||
19 | } |
||
20 | |||
21 | public function getQuery(): QueryInterface |
||
24 | } |
||
25 | } |
||
26 |