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
ConnectionRegistry.php
12 lines
| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\Persistence; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | interface ConnectionRegistry |
| 6 | { |
| 7 | public function getDefaultConnectionName(); |
| 8 | public function getConnection(?string $name = null); |
| 9 | public function getConnections(); |
| 10 | public function getConnectionNames(); |
| 11 | } |
| 12 |