1 | <?php |
||
7 | class TestBoot implements BootInterface, BootstrapSelectionInterface |
||
8 | { |
||
9 | protected $path; |
||
10 | protected $siteSelector; |
||
11 | protected $version; |
||
12 | protected $services; |
||
13 | |||
14 | public function __construct($path, $version, $services) |
||
20 | |||
21 | /** |
||
22 | * @inheritdoc |
||
23 | */ |
||
24 | public function isValid($path) |
||
28 | |||
29 | /** |
||
30 | * @inheritdoc |
||
31 | */ |
||
32 | public function getBootstrap($path, $siteSelector = null) |
||
42 | |||
43 | public function getPath() |
||
47 | |||
48 | public function getSiteSelector() |
||
52 | |||
53 | /** |
||
54 | * @inheritdoc |
||
55 | */ |
||
56 | public function getFrameworkVersion() |
||
60 | |||
61 | /** |
||
62 | * @inheritdoc |
||
63 | */ |
||
64 | public function getServiceFeatures() |
||
68 | |||
69 | /** |
||
70 | * @inheritdoc |
||
71 | */ |
||
72 | public function boot($serviceFeatures, $siteSelector = null) |
||
76 | |||
77 | /** |
||
78 | * @inheritdoc |
||
79 | */ |
||
80 | public function terminate() |
||
83 | } |
||
84 |