1 | <?php |
||
15 | class RawMinkContext extends OriginalRawMinkContext implements ServiceContainerAwareInterface { |
||
16 | |||
17 | /** |
||
18 | * Service container instance. |
||
19 | * |
||
20 | * @var ContainerBuilder |
||
21 | */ |
||
22 | private $container; |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function setContainer(ContainerBuilder $container) { |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function getContainer() { |
||
37 | |||
38 | /** |
||
39 | * Checks that the given element is of the given type. |
||
40 | * |
||
41 | * @param NodeElement $element |
||
42 | * The element to check. |
||
43 | * @param string $type |
||
44 | * The expected type. |
||
45 | * |
||
46 | * @throws ExpectationException |
||
47 | * Thrown when the given element is not of the expected type. |
||
48 | */ |
||
49 | public function assertElementType(NodeElement $element, $type) { |
||
54 | |||
55 | } |
||
56 |