]> git.mxchange.org Git - core.git/blobdiff - inc/classes/exceptions/main/class_MissingMethodException.php
Replaced more double-quotes to single, exposed in exception AlreadyInitializedStacke...
[core.git] / inc / classes / exceptions / main / class_MissingMethodException.php
index 78f16c1129c9f042b3774b6ddc2b859e1d80ebec..1c59be5a61492077ee4f8ee6cde51bbb10837c48 100644 (file)
@@ -1,14 +1,18 @@
 <?php
 /**
- * An exception thrown when a method is missing
+ * An exception thrown when a method is missing, this exception is used in
+ * guest/user login classes and thrown when a factory method is absend. I think
+ * we should still give it a try to rewrite these classes and again mark this
+ * method as deprecated because we have a more flexible ObjectFactory class.
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007 - 2009 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
- * @deprecated
- * 
+ * @todo               Try to rewrite user/guest login classes and mark this exception as deprecated
+ * @deprecated Please do no longer use this exception
+ *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
@@ -32,7 +36,7 @@ class MissingMethodException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] This class has no method <u>%s()</u>!",
+               $message = sprintf('[%s:%d] This class has no method <u>%s()</u>.',
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]