From 2bd1b63f79fda8d85f3d2fa9ea20daf9e0893d76 Mon Sep 17 00:00:00 2001 From: Jonathan Hedstrom Date: Wed, 6 Dec 2017 10:06:06 -0800 Subject: [PATCH] Adds a JavaScript driver interface. - Addresses #752 --- src/Driver/JavascriptDriverInterface.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/Driver/JavascriptDriverInterface.php diff --git a/src/Driver/JavascriptDriverInterface.php b/src/Driver/JavascriptDriverInterface.php new file mode 100644 index 000000000..0dfd269f6 --- /dev/null +++ b/src/Driver/JavascriptDriverInterface.php @@ -0,0 +1,20 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Behat\Mink\Driver; + +/** + * Driver interface for drivers that support JavaScript. + * + * @author Konstantin Kudryashov + */ +interface JavascriptDriverInterface +{ +}