コード例 #1
0
ファイル: Builder.php プロジェクト: thanghexp/project
 /**
  * @param Directory $root
  * @param array     $items
  * @param array     $tests
  * @param bool      $cacheTokens
  */
 private function addItems(Directory $root, array $items, array $tests, $cacheTokens)
 {
     foreach ($items as $key => $value) {
         if (substr($key, -2) == '/f') {
             $key = substr($key, 0, -2);
             if (file_exists($root->getPath() . DIRECTORY_SEPARATOR . $key)) {
                 $root->addFile($key, $value, $tests, $cacheTokens);
             }
         } else {
             $child = $root->addDirectory($key);
             $this->addItems($child, $value, $tests, $cacheTokens);
         }
     }
 }