This commit is contained in:
as2252258@163.com
2021-04-08 02:26:44 +08:00
parent 648385b64a
commit a6e5d03441
+2 -3
View File
@@ -238,7 +238,6 @@ class Loader extends BaseObject
} }
/** /**
* @param string $filePath * @param string $filePath
* @param string $className * @param string $className
@@ -353,11 +352,11 @@ class Loader extends BaseObject
return; return;
} }
foreach ($classes as $className) { foreach ($classes as $className) {
if (!isset($this->_classes[$className])) { $annotations = $this->_classes[$className] ?? null;
if ($annotations === null) {
continue; continue;
} }
$annotations = $this->_classes[$className];
if (isset($annotations['target']) && !empty($annotations['target'])) { if (isset($annotations['target']) && !empty($annotations['target'])) {
foreach ($annotations['target'] as $value) { foreach ($annotations['target'] as $value) {
$value->execute([$annotations['handler']]); $value->execute([$annotations['handler']]);