* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Behat\Testwork\Hook; use Behat\Testwork\Hook\Scope\HookScope; /** * Represents hook that is filterable by the provided scope. * * @author Konstantin Kudryashov */ interface FilterableHook extends Hook { /** * Checks that current hook matches provided hook scope. * * @param HookScope $scope * * @return Boolean */ public function filterMatches(HookScope $scope); }