X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=inline;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FCli%2FController.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FCli%2FController.php;h=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hp=e604d67660e2ffa906dae867ec09a0d0704c8c2a;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0;p=yaffs-website diff --git a/vendor/behat/behat/src/Behat/Testwork/Cli/Controller.php b/vendor/behat/behat/src/Behat/Testwork/Cli/Controller.php deleted file mode 100644 index e604d6766..000000000 --- a/vendor/behat/behat/src/Behat/Testwork/Cli/Controller.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\Cli; - -use Symfony\Component\Console\Command\Command as SymfonyCommand; -use Symfony\Component\Console\Input\InputInterface; -use Symfony\Component\Console\Output\OutputInterface; - -/** - * Represents Testwork Console Controller. - * - * All testwork console controllers should implement this interface. - * - * @author Konstantin Kudryashov - */ -interface Controller -{ - /** - * Configures command to be executable by the controller. - * - * @param SymfonyCommand $command - */ - public function configure(SymfonyCommand $command); - - /** - * Executes controller. - * - * @param InputInterface $input - * @param OutputInterface $output - * - * @return null|integer - */ - public function execute(InputInterface $input, OutputInterface $output); -}