1 | <?php |
||
8 | class Framework implements FrameworkInterface |
||
9 | { |
||
10 | /** @var ContainerInterface */ |
||
11 | private $container; |
||
12 | |||
13 | /** @var string */ |
||
14 | private $rootPath; |
||
15 | |||
16 | 2 | public function __construct(ContainerInterface $container, string $rootPath) |
|
21 | |||
22 | 1 | public function getContainer(): ContainerInterface |
|
26 | |||
27 | 1 | public function path(string $relativePath): string |
|
31 | } |
||
32 |