| 1 | <?php |
||
| 6 | class QueryMutator |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @var \yii\db\Query |
||
| 10 | */ |
||
| 11 | protected $query; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * QueryMutator constructor. |
||
| 15 | * @param \yii\db\Query $query |
||
| 16 | */ |
||
| 17 | public function __construct($query) |
||
| 21 | |||
| 22 | public function apply(Specification $specification) |
||
| 34 | |||
| 35 | public function getQuery() |
||
| 39 | } |
||
| 40 |