X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FContext%2FContextClass%2FClassResolver.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FContext%2FContextClass%2FClassResolver.php;h=0000000000000000000000000000000000000000;hp=464f68f41d4f5416ec8c6ae6c51e0b99b0ff31c4;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/behat/behat/src/Behat/Behat/Context/ContextClass/ClassResolver.php b/vendor/behat/behat/src/Behat/Behat/Context/ContextClass/ClassResolver.php deleted file mode 100644 index 464f68f41..000000000 --- a/vendor/behat/behat/src/Behat/Behat/Context/ContextClass/ClassResolver.php +++ /dev/null @@ -1,41 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Behat\Behat\Context\ContextClass; - -use Behat\Behat\Context\Environment\Handler\ContextEnvironmentHandler; - -/** - * Resolves arbitrary context strings into a context classes. - * - * @see ContextEnvironmentHandler - * - * @author Konstantin Kudryashov - */ -interface ClassResolver -{ - /** - * Checks if resolvers supports provided class. - * - * @param string $contextString - * - * @return Boolean - */ - public function supportsClass($contextString); - - /** - * Resolves context class. - * - * @param string $contextClass - * - * @return string - */ - public function resolveClass($contextClass); -}