Sha256: 791df87082a1ddd2d750d2a12da678f34921800ff95274ce8bbf5aaa5938e73f
Contents?: true
Size: 697 Bytes
Versions: 36
Compression:
Stored size: 697 Bytes
Contents
<?php namespace Symfony\Component\Console\CommandLoader; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Exception\CommandNotFoundException; /** * @author Robin Chalas <robin.chalas@gmail.com> */ interface CommandLoaderInterface { /** * Loads a command. * * @param string $name * * @return Command * * @throws CommandNotFoundException */ public function get($name); /** * Checks if a command exists. * * @param string $name * * @return bool */ public function has($name); /** * @return string[] All registered command names */ public function getNames(); }
Version data entries
36 entries across 36 versions & 1 rubygems