X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FSpecification%2FLocator%2FSpecificationLocator.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FSpecification%2FLocator%2FSpecificationLocator.php;h=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hp=372fbea3206f10206c2a3c46d540df09bf2c1590;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0;p=yaffs-website diff --git a/vendor/behat/behat/src/Behat/Testwork/Specification/Locator/SpecificationLocator.php b/vendor/behat/behat/src/Behat/Testwork/Specification/Locator/SpecificationLocator.php deleted file mode 100644 index 372fbea32..000000000 --- a/vendor/behat/behat/src/Behat/Testwork/Specification/Locator/SpecificationLocator.php +++ /dev/null @@ -1,42 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Behat\Testwork\Specification\Locator; - -use Behat\Testwork\Specification\SpecificationFinder; -use Behat\Testwork\Specification\SpecificationIterator; -use Behat\Testwork\Suite\Suite; - -/** - * Provides a custom way to locate specification by provided suite and locator string. - * - * @see SpecificationFinder - * - * @author Konstantin Kudryashov - */ -interface SpecificationLocator -{ - /** - * Returns array of strings representing examples of supported specification locators. - * - * @return string[] - */ - public function getLocatorExamples(); - - /** - * Locates specifications and wraps them into iterator. - * - * @param Suite $suite - * @param string $locator - * - * @return SpecificationIterator - */ - public function locateSpecifications(Suite $suite, $locator); -}