| 1 | <?php |
||
| 11 | class DoctrineProcessingService extends AbstractProcessingService |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param QueryBuilder $data |
||
| 15 | * @return Traversable |
||
| 16 | */ |
||
| 17 | 13 | protected function afterOperations($data) |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @param QueryBuilder $data |
||
| 24 | * @return QueryBuilder |
||
| 25 | */ |
||
| 26 | 15 | protected function beforeOperations($data) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Returns count of processed items after applying all operations. |
||
| 33 | * |
||
| 34 | * @return int |
||
| 35 | */ |
||
| 36 | 2 | public function count() |
|
| 45 | } |
||
| 46 |