Merge pull request #343 from manavo/patch-1

Fix DocBlock
This commit is contained in:
Samuel Georges 2014-06-23 07:41:04 +10:00
commit 3c510af991
1 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ class ExceptionBase extends Exception
* and Php errors.
* @param string $message Error message.
* @param int $code Error code.
* @param closure $closure Closure function containing code to execute.
* @param \closure $closure Closure function containing code to execute.
* @param array $params Parameters passed to the function as the first parameter.
* @return mixed Returned value from the closure function.
*/
@ -341,4 +341,4 @@ class ExceptionBase extends Exception
return implode(', ', $argsArray);
}
}
}