minor #19759 [Console] Fix Application::setDefaultCommand() missing return in docblock (ogizanagi)

This PR was merged into the 3.2-dev branch.

Discussion
----------

[Console] Fix Application::setDefaultCommand() missing return in docblock

| Q             | A
| ------------- | ---
| Branch?       | master
| License       | MIT

Despite the fact IDEs are clever enough to make this useless, I think it's clearly part of the contract of this public method anyway 😄

Commits
-------

0165835 [Console] Fix Application::setDefaultCommand() missing return in docblock
This commit is contained in:
Fabien Potencier 2016-08-27 17:33:16 -07:00
commit feb5413b6b

View File

@ -1002,6 +1002,8 @@ class Application
*
* @param string $commandName The Command name
* @param bool $isSingleCommand Set to true if there is only one command in this application
*
* @return self
*/
public function setDefaultCommand($commandName, $isSingleCommand = false)
{