| 1 | <?php |
||
| 9 | abstract class ManagerRegistryEndpointFactory extends LoggingEndpointFactory |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var ManagerRegistry |
||
| 13 | */ |
||
| 14 | protected $managerRegistry; |
||
| 15 | |||
| 16 | 1 | public function __construct(ManagerRegistry $managerRegistry, LoggerInterface $logger) |
|
| 21 | |||
| 22 | 1 | protected function getLoggingEndpoint(string $name, string $version): LoggingEndpoint |
|
| 28 | |||
| 29 | protected abstract function getManagerRegistryEndpoint(string $name, string $version): ManagerRegistryEndpoint; |
||
| 30 | } |
||
| 31 |