| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 58 | public function buildDriver(array $config) |
||
| 59 | { |
||
| 60 | if (!class_exists('Behat\Mink\Driver\PantherDriver')) { |
||
| 61 | throw new \RuntimeException( |
||
| 62 | 'Install MinkPantherDriver in order to use panther driver.' |
||
| 63 | ); |
||
| 64 | } |
||
| 65 | |||
| 66 | return new Definition( |
||
| 67 | 'Behat\Mink\Driver\PantherDriver', |
||
| 68 | array( |
||
| 69 | $config['options'] |
||
| 70 | ) |
||
| 71 | ); |
||
| 72 | } |
||
| 73 | } |
||
| 74 |