| 1 | <?php |
||
| 22 | class StatementRepository extends BaseStatementRepository |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var MappedStatementRepository The statement repository |
||
| 26 | */ |
||
| 27 | private $repository; |
||
| 28 | |||
| 29 | public function __construct(MappedStatementRepository $repository) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritDoc} |
||
| 36 | */ |
||
| 37 | protected function findMappedStatement(array $criteria) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritDoc} |
||
| 44 | */ |
||
| 45 | protected function findMappedStatements(array $criteria) |
||
| 49 | |||
| 50 | /** |
||
| 51 | * {@inheritDoc} |
||
| 52 | */ |
||
| 53 | protected function storeMappedStatement(MappedStatement $mappedStatement, $flush) |
||
| 57 | } |
||
| 58 |