From 872faee642d942c91cffe66839a0ce025d68265d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Wed, 14 Apr 2021 18:24:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Annotation/Loader.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Annotation/Loader.php b/Annotation/Loader.php index b342e249..ff5ab939 100644 --- a/Annotation/Loader.php +++ b/Annotation/Loader.php @@ -275,6 +275,7 @@ class Loader extends BaseObject foreach ($directory as $key => $value) { $_tmp .= DIRECTORY_SEPARATOR . $value; if (!empty($outPath) && str_contains($_tmp, $outPath)) { + var_dump($_tmp, $outPath); break; } $tree = $this->getTree($tree, $value); @@ -325,6 +326,7 @@ class Loader extends BaseObject foreach ($nodes as $node) { $this->execute($node->getFiles()); if (!empty($outPaht) && str_contains($node->getDirPath(), $outPath)) { + var_dump($node->getDirPath(), $outPath); continue; } $childes = $node->getChildes();