| Total Complexity | 4 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 10 | class AzineQueryMock extends AbstractQuery |
||
| 11 | { |
||
| 12 | // @codeCoverageIgnoreStart |
||
| 13 | private $result; |
||
| 14 | |||
| 15 | public function __construct($result) |
||
| 18 | } |
||
| 19 | |||
| 20 | protected function _doExecute() |
||
| 21 | { |
||
| 22 | return $this->result; |
||
| 23 | } |
||
| 24 | |||
| 25 | public function execute($parameters = null, $hydrationMode = null) |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getSQL() |
||
| 35 |