1 | <?php |
||
13 | class RawDrupalContext extends OriginalRawDrupalContext implements ServiceContainerAwareInterface { |
||
14 | |||
15 | /** |
||
16 | * Service container instance. |
||
17 | * |
||
18 | * @var ContainerBuilder |
||
19 | */ |
||
20 | private $container; |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function setContainer(ContainerBuilder $container) { |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function getContainer() { |
||
35 | |||
36 | /** |
||
37 | * Get current Drupal core. |
||
38 | * |
||
39 | * @return \NuvoleWeb\Drupal\Driver\Cores\CoreInterface|\Drupal\Driver\Cores\CoreInterface |
||
40 | * Drupal core object instance. |
||
41 | */ |
||
42 | public function getCore() { |
||
45 | |||
46 | } |
||
47 |