summaryrefslogtreecommitdiffstats
path: root/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Input/InputAwareInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Input/InputAwareInterface.php')
-rw-r--r--Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Input/InputAwareInterface.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Input/InputAwareInterface.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Input/InputAwareInterface.php
deleted file mode 100644
index d0f11e9..0000000
--- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Input/InputAwareInterface.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\Console\Input;
-
-/**
- * InputAwareInterface should be implemented by classes that depends on the
- * Console Input.
- *
- * @author Wouter J <waldio.webdesign@gmail.com>
- */
-interface InputAwareInterface
-{
- /**
- * Sets the Console Input.
- *
- * @param InputInterface
- */
- public function setInput(InputInterface $input);
-}