%PDF- %PDF-
Direktori : /var/www/html/car_rent/vendor/phpspec/phpspec/src/PhpSpec/Matcher/ |
Current File : /var/www/html/car_rent/vendor/phpspec/phpspec/src/PhpSpec/Matcher/MatcherInterface.php |
<?php /* * This file is part of PhpSpec, A php toolset to drive emergent * design by specification. * * (c) Marcello Duarte <marcello.duarte@gmail.com> * (c) Konstantin Kudryashov <ever.zet@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PhpSpec\Matcher; interface MatcherInterface { /** * Checks if matcher supports provided subject and matcher name. * * @param string $name * @param mixed $subject * @param array $arguments * * @return Boolean */ public function supports($name, $subject, array $arguments); /** * Evaluates positive match. * * @param string $name * @param mixed $subject * @param array $arguments */ public function positiveMatch($name, $subject, array $arguments); /** * Evaluates negative match. * * @param string $name * @param mixed $subject * @param array $arguments */ public function negativeMatch($name, $subject, array $arguments); /** * Returns matcher priority. * * @return integer */ public function getPriority(); }