Error messages are longer surpressed
authorRoland Häder <roland@mxchange.org>
Tue, 9 Dec 2008 19:19:41 +0000 (19:19 +0000)
committerRoland Häder <roland@mxchange.org>
Tue, 9 Dec 2008 19:19:41 +0000 (19:19 +0000)
inc/config.php
inc/loader/class_ClassLoader.php

index 143ad06ca61c3ff5924f5cef4edab64540d59c44..a930355fcb0ae60760fad8c425d1baaa400b54ba 100644 (file)
@@ -25,9 +25,9 @@
  */
 
 // Load the class from inc/config direktory
-@require_once(dirname(__FILE__) . '/classes/interfaces/class_FrameworkInterface.php');
-@require_once(dirname(__FILE__) . '/classes/interfaces/registry/class_Registerable.php');
-@require_once(dirname(__FILE__) . '/config/class_FrameworkConfiguration.php');
+require_once(dirname(__FILE__) . '/classes/interfaces/class_FrameworkInterface.php');
+require_once(dirname(__FILE__) . '/classes/interfaces/registry/class_Registerable.php');
+require_once(dirname(__FILE__) . '/config/class_FrameworkConfiguration.php');
 
 // Get a new configuration instance
 $cfg = FrameworkConfiguration::getInstance();
index 134b8c10d4af9d7a533065d105da41c4f92c09c6..dbba1ff1139e9ad37d73e6decba8faa95a5c63e2 100644 (file)
@@ -209,22 +209,18 @@ class ClassLoader {
         * Scans recursively a local path for class files which must have a prefix and a suffix as given by $this->suffix and $this->prefix
         *
         * @param       $basePath               The relative base path to 'base_path' constant for all classes
-        * @param       $ignoreList             An optional list (array or string) of directory names which shall be ignored
+        * @param       $ignoreList             An optional list (array forced) of directory and file names which shall be ignored
         * @return      void
         */
-       public function loadClasses ($basePath, $ignoreList = array() ) {
+       public function loadClasses ($basePath, array $ignoreList = array() ) {
                // Is a list has been restored from cache, don't read it again
                if ($this->listCached === true) {
                        // Abort here
                        return;
                }
 
-               // Convert string to array
-               if (!is_array($ignoreList)) $ignoreList = array($ignoreList);
-
                // Directories which our class loader ignores by default while
-               // deep-scanning the directory structure. See scanLocalPath() for
-               // details.
+               // deep-scanning the directory structure.
                $ignoreList[] = ".";
                $ignoreList[] = "..";
                $ignoreList[] = ".htaccess";