| 1 | <?php |
||
| 7 | class LazyLoadingDriver implements DriverInterface |
||
| 8 | { |
||
| 9 | private $container; |
||
| 10 | private $realDriverId; |
||
| 11 | |||
| 12 | public function __construct(ContainerInterface $container, $realDriverId) |
||
| 13 | { |
||
| 14 | $this->container = $container; |
||
| 15 | $this->realDriverId = $realDriverId; |
||
| 16 | } |
||
| 17 | |||
| 18 | /** |
||
| 19 | * {@inheritDoc} |
||
| 20 | */ |
||
| 21 | public function loadMetadataForClass(\ReflectionClass $class) |
||
| 25 | } |
||
| 26 |