fix typos in some docstrings

This commit is contained in:
coderkun 2016-05-28 12:26:56 +02:00
commit 7caf59d582
2 changed files with 4 additions and 4 deletions

View file

@ -107,7 +107,7 @@
* @throws \nre\exceptions\ControllerNotFoundException * @throws \nre\exceptions\ControllerNotFoundException
* @param string $agentName Name of the Agent to instantiate * @param string $agentName Name of the Agent to instantiate
* @param Request $request Current request * @param Request $request Current request
* @param Response $respone Current respone * @param Response $response Current respone
* @param Logger $log Log-system * @param Logger $log Log-system
*/ */
public static function factory($agentName, Request $request, Response $response, Logger $log=null) public static function factory($agentName, Request $request, Response $response, Logger $log=null)
@ -165,7 +165,7 @@
* @throws \nre\exceptions\ControllerNotValidException * @throws \nre\exceptions\ControllerNotValidException
* @throws \nre\exceptions\ControllerNotFoundException * @throws \nre\exceptions\ControllerNotFoundException
* @param Request $request Current request * @param Request $request Current request
* @param Response $respone Current response * @param Response $response Current response
* @param Logger $log Log-system * @param Logger $log Log-system
*/ */
protected function __construct(Request $request, Response $response, Logger $log=null) protected function __construct(Request $request, Response $response, Logger $log=null)
@ -502,7 +502,7 @@
* *
* @param array $subAgent Original (Sub-) Agent * @param array $subAgent Original (Sub-) Agent
* @param Request $request Current request * @param Request $request Current request
* @param Excepiton $exception Occurred exception * @param Exception $exception Occurred exception
* @return array InlineError-SubAgent * @return array InlineError-SubAgent
*/ */
private function errorInline($subAgent, $request, $exception) private function errorInline($subAgent, $request, $exception)

View file

@ -27,7 +27,7 @@
* Load a class. * Load a class.
* *
* @throws \nre\exceptions\ClassNotFoundException * @throws \nre\exceptions\ClassNotFoundException
* @param string $className Name of the class to load * @param string $fullClassName Name of the class to load
*/ */
public static function load($fullClassName) public static function load($fullClassName)
{ {