public function CoreDriverTest::getDriverInterfaceMethods in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/tests/Driver/CoreDriverTest.php \Behat\Mink\Tests\Driver\CoreDriverTest::getDriverInterfaceMethods()
File
- vendor/
behat/ mink/ tests/ Driver/ CoreDriverTest.php, line 72
Class
Namespace
Behat\Mink\Tests\DriverCode
public function getDriverInterfaceMethods() {
$ref = new \ReflectionClass('Behat\\Mink\\Driver\\DriverInterface');
return array_map(function ($method) {
return array(
$method,
);
}, $ref
->getMethods());
}