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
ObjectManager.php
22 lines
| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\Persistence; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | use MailPoetVendor\Doctrine\Persistence\Mapping\ClassMetadata; |
| 6 | use MailPoetVendor\Doctrine\Persistence\Mapping\ClassMetadataFactory; |
| 7 | interface ObjectManager |
| 8 | { |
| 9 | public function find(string $className, $id); |
| 10 | public function persist(object $object); |
| 11 | public function remove(object $object); |
| 12 | public function clear(); |
| 13 | public function detach(object $object); |
| 14 | public function refresh(object $object); |
| 15 | public function flush(); |
| 16 | public function getRepository(string $className); |
| 17 | public function getClassMetadata(string $className); |
| 18 | public function getMetadataFactory(); |
| 19 | public function initializeObject(object $obj); |
| 20 | public function contains(object $object); |
| 21 | } |
| 22 |