Skip to content

Commit

Permalink
unify and fix callable phpdoc throughout symfony
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobion committed Nov 20, 2013
1 parent e2ce316 commit a413342
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Shell/Command.php
Expand Up @@ -39,7 +39,7 @@ class Command
/**
* Constructor.
*
* @param Command $parent Parent command
* @param Command|null $parent Parent command
*/
public function __construct(Command $parent = null)
{
Expand All @@ -61,7 +61,7 @@ public function __toString()
/**
* Creates a new Command instance.
*
* @param Command $parent Parent command
* @param Command|null $parent Parent command
*
* @return Command New Command instance
*/
Expand Down Expand Up @@ -232,7 +232,7 @@ public function setErrorHandler(\Closure $errorHandler)
}

/**
* @return callable|null
* @return \Closure|null
*/
public function getErrorHandler()
{
Expand Down

0 comments on commit a413342

Please sign in to comment.