Event
9 months ago
Mapping
8 months ago
Reflection
9 months ago
AbstractManagerRegistry.php
9 months ago
ConnectionRegistry.php
9 months ago
ManagerRegistry.php
9 months ago
NotifyPropertyChanged.php
9 months ago
ObjectManager.php
9 months ago
ObjectManagerDecorator.php
9 months ago
ObjectRepository.php
9 months ago
PropertyChangedListener.php
9 months ago
Proxy.php
9 months ago
index.php
3 years ago
ObjectRepository.php
14 lines
| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\Persistence; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | use UnexpectedValueException; |
| 6 | interface ObjectRepository |
| 7 | { |
| 8 | public function find($id); |
| 9 | public function findAll(); |
| 10 | public function findBy(array $criteria, ?array $orderBy = null, ?int $limit = null, ?int $offset = null); |
| 11 | public function findOneBy(array $criteria); |
| 12 | public function getClassName(); |
| 13 | } |
| 14 |