X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fexceptions%2Fcontroller%2Fclass_InvalidControllerException.php;h=15d90f534326e8a404698e320a650370e9b0d04f;hp=c8234e15a8e26bd3bf0f4ce6ce98c9ae5d775b5a;hb=a6ec0211ffb9b65e7c8efd81abdbb925774264ff;hpb=49f84a522f0ccac3b70728cd41011a0be0eed8cf diff --git a/inc/classes/exceptions/controller/class_InvalidControllerException.php b/inc/classes/exceptions/controller/class_InvalidControllerException.php index c8234e15..15d90f53 100644 --- a/inc/classes/exceptions/controller/class_InvalidControllerException.php +++ b/inc/classes/exceptions/controller/class_InvalidControllerException.php @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007 - 2009 Roland Haeder, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -29,7 +29,7 @@ class InvalidControllerException extends FrameworkException { * @param $code An optional code for better debugging * @return void */ - public function __construct(array $msgArray, $code) { + public function __construct (array $msgArray, $code) { // Prepare the message $message = sprintf("[%s:%d] Cannot resolve controller %s (class name: %s).", $msgArray[0]->__toString(), @@ -39,7 +39,7 @@ class InvalidControllerException extends FrameworkException { ); // Set extra data - $this->setExtraData($msgArray[0]->getClassName().':'.$this->getLine()); + $this->setExtraData($msgArray[0]->getClassName() . ':' . $this->getLine()); // Call parent contructor with message parent::__construct($message, $code);