This commit is contained in:
2021-04-14 17:56:16 +08:00
parent 603f88c85c
commit 382db40ffd
+5 -1
View File
@@ -265,13 +265,17 @@ class Loader extends BaseObject
private function each(string $filePath): static private function each(string $filePath): static
{ {
$tree = null; $tree = null;
$filePath = str_replace(APP_PATH, '', $filePath); $filePath = str_replace(directory('app'), '', $filePath);
$directory = $this->splitDirectory($filePath); $directory = $this->splitDirectory($filePath);
foreach ($directory as $key => $value) { foreach ($directory as $key => $value) {
$tree = $this->getTree($tree, $value); $tree = $this->getTree($tree, $value);
} }
if (env('worker') < 1) {
var_dump($filePath, $tree);
}
if ($tree instanceof FileTree) { if ($tree instanceof FileTree) {
$this->eachNode($tree->getChildes()); $this->eachNode($tree->getChildes());
$this->execute($tree->getFiles()); $this->execute($tree->getFiles());