1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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();
- }
|