8000 [Console] Add command resolver (proof of concept) by funivan · Pull Request #16438 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Console] Add command resolver (proof of concept) #16438

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 12 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by ext 8000 ension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix phpdoc
  • Loading branch information
Ivan Scherbak committed Nov 4, 2015
commit d07ee8a9288f3a8a0186c41418a2a9a5c2986965
6F7C
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ public static function getClassFromName($name)
}

/**
* @inheritdoc
* {@inheritdoc}
*/
public function add(Command $command)
{
$this->commands[$command->getName()] = $command;
}

/**
* @inheritdoc
* {@inheritdoc}
*/
public function has($name)
{
Expand All @@ -80,7 +80,7 @@ public function has($name)
}

/**
* @inheritdoc
* {@inheritdoc}
*/
public function get($name)
{
Expand All @@ -97,7 +97,7 @@ public function get($name)
}

/**
* @inheritdoc
* {@inheritdoc}
*/
public function getAll()
{
Expand All @@ -110,7 +110,7 @@ public function getAll()
}

/**
* @inheritdoc
* {@inheritdoc}
*/
public function getAllNames()
{
Expand Down
0