| 1 | <?php |
||
| 17 | class PaymentRepository extends EntityRepository implements RepositoryInterface |
||
|
|
|||
| 18 | { |
||
| 19 | /** |
||
| 20 | * {@inheritdoc} |
||
| 21 | */ |
||
| 22 | public function createNew() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Find all available payments. |
||
| 29 | */ |
||
| 30 | public function findAllAvailable() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | public function createPaginator(array $criteria = null, array $orderBy = null) |
||
| 47 | } |
||
| 48 |