12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace Symfony\Component\Console\CommandLoader;
- use Symfony\Component\Console\Command\Command;
- use Symfony\Component\Console\Exception\CommandNotFoundException;
- interface CommandLoaderInterface
- {
-
- public function get($name);
-
- public function has($name);
-
- public function getNames();
- }
|