]> git.mxchange.org Git - core.git/blobdiff - inc/classes/exceptions/main/class_MissingArrayElementsException.php
Replaced more double-quotes to single, exposed in exception AlreadyInitializedStacke...
[core.git] / inc / classes / exceptions / main / class_MissingArrayElementsException.php
index c7900ca0e02b027ec3c2ac2628c7b0607097f83c..cb0b90927a7b3e423fcf1ee8cd354da8a8125b06 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @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
  * 
@@ -31,17 +31,17 @@ class MissingArrayElementsException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Extract all elements
-               $elements = "";
+               $elements = '';
                if ((isset($classArray[2])) && (is_array($classArray[2]))) {
                        // Convert into strings
-                       $elements = implode("</u>, <u>", $classArray[2]);
+                       $elements = implode('</u>, <u>', $classArray[2]);
                } else {
                        // Invalid data
-                       $elements = "invalid_data";
+                       $elements = 'invalid_data';
                }
 
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Array <u>%s()</u> Does not have these elements: <span class=\"exception_reason\">%s</span>",
+               $message = sprintf('[%s:%d] Array <u>%s()</u> Does not have these elements: %s',
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1],