more quote identeiifers fixessss
[Pman.Core] / Process / Php7.php
index f777be6..608107d 100644 (file)
@@ -36,7 +36,7 @@ class Pman_Core_Process_Php7 extends Pman
         });
         
         $this->scan(array("Pman"));
-//        $this->scan(array("Hebe"));
+        $this->scan(array($this->bootLoader->project));
         
         exit;
     }
@@ -45,8 +45,6 @@ class Pman_Core_Process_Php7 extends Pman
     {
         $dir = $this->rootDir . "/" . implode("/", $route);
         
-        echo "Looking for {$dir}\n";
-        
         foreach (scandir($dir) as $d) {
             
             if (!strlen($d) || $d[0] == '.') {
@@ -54,12 +52,10 @@ class Pman_Core_Process_Php7 extends Pman
             }
             
             if (is_dir("{$dir}/{$d}")) {
-                echo "directory : {$d}\n";
                 $this->scan(array_merge($route, array($d)));
                 continue;
             }
             
-            echo "get file {$d}\n";
             if (!preg_match('/\.php$/', $d)) {
                 continue;
             }