Loading src/Service/IntrospectionService.php +10 −7 Original line number Diff line number Diff line Loading @@ -171,8 +171,11 @@ class IntrospectionService { $cti = $this->getCTI($namespace, $includeVendor); foreach ($cti as $k => $c) { if (!class_exists($c)) { unset($cti[$k]); if (@trait_exists($c) || @interface_exists($c)) { continue; } if (!@class_exists($c)) { throw new \Exception('La classe ' . $c . ' n\existe pas ou bien elle elle est introuvable'); } } Loading Loading @@ -233,7 +236,7 @@ class IntrospectionService } } if ($ok && (!$namespace || 0 === strpos($class, $namespace))) { if ($ok && (!$namespace || str_starts_with($class, $namespace))) { $map[] = $class; } } Loading Loading
src/Service/IntrospectionService.php +10 −7 Original line number Diff line number Diff line Loading @@ -171,8 +171,11 @@ class IntrospectionService { $cti = $this->getCTI($namespace, $includeVendor); foreach ($cti as $k => $c) { if (!class_exists($c)) { unset($cti[$k]); if (@trait_exists($c) || @interface_exists($c)) { continue; } if (!@class_exists($c)) { throw new \Exception('La classe ' . $c . ' n\existe pas ou bien elle elle est introuvable'); } } Loading Loading @@ -233,7 +236,7 @@ class IntrospectionService } } if ($ok && (!$namespace || 0 === strpos($class, $namespace))) { if ($ok && (!$namespace || str_starts_with($class, $namespace))) { $map[] = $class; } } Loading