1 | <?php |
||
25 | final class IsolatedSymfonyFactory implements DriverFactory |
||
26 | { |
||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function getDriverName() |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function supportsJavascript() |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function configure(ArrayNodeDefinition $builder) |
||
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | public function buildDriver(array $config) |
||
62 | |||
63 | /** |
||
64 | * @throws \RuntimeException If MinkBrowserKitDriver is not available |
||
65 | */ |
||
66 | private function assertMinkBrowserKitDriverIsAvailable() |
||
72 | } |
||
73 |