Skip to content
This repository was archived by the owner on Mar 1, 2023. It is now read-only.

Commit 4deb717

Browse files
committed
removed fix for skip abstract class in ClassFinder
added a reflection class to check if configurator class is instantiable and has method
1 parent fa7206b commit 4deb717

File tree

4 files changed

+34
-12
lines changed

4 files changed

+34
-12
lines changed

src/Discovery/ClassFinder.php

+13-11
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,12 @@ private static function findClassOrTraitOrInterface(string $path): ?string
5050
$tokens = \token_get_all(\file_get_contents($path));
5151

5252
foreach ($tokens as $key => $token) {
53-
if (self::tokenIsNamespace($token)) {
54-
$namespace = self::getNamespace($key + 2, $tokens);
55-
} elseif (self::tokenIsClassOrTraitOrInterface($token)) {
56-
return \ltrim($namespace . '\\' . self::getClass($key + 2, $tokens), '\\');
53+
if (\is_array($token)) {
54+
if (self::tokenIsNamespace($token)) {
55+
$namespace = self::getNamespace($key + 2, $tokens);
56+
} elseif (self::tokenIsClassOrTraitOrInterface($token)) {
57+
return \ltrim($namespace . '\\' . self::getClass($key + 2, $tokens), '\\');
58+
}
5759
}
5860
}
5961

@@ -68,7 +70,7 @@ private static function findClassOrTraitOrInterface(string $path): ?string
6870
*
6971
* @return null|string
7072
*/
71-
private static function getNamespace($key, array $tokens): ?string
73+
private static function getNamespace(int $key, array $tokens): ?string
7274
{
7375
$namespace = null;
7476
$tokenCount = \count($tokens);
@@ -123,13 +125,13 @@ private static function getClass($key, array $tokens): ?string
123125
/**
124126
* Determine if the given token is a namespace keyword.
125127
*
126-
* @param array|string $token
128+
* @param array $token
127129
*
128130
* @return bool
129131
*/
130-
private static function tokenIsNamespace($token): bool
132+
private static function tokenIsNamespace(array $token): bool
131133
{
132-
return \is_array($token) && $token[0] === T_NAMESPACE;
134+
return $token[0] === T_NAMESPACE;
133135
}
134136

135137
/**
@@ -147,13 +149,13 @@ private static function isPartOfClass($token): bool
147149
/**
148150
* Determine if the given token is a class or interface keyword.
149151
*
150-
* @param array|string $token
152+
* @param array $token
151153
*
152154
* @return bool
153155
*/
154-
private static function tokenIsClassOrTraitOrInterface($token): bool
156+
private static function tokenIsClassOrTraitOrInterface(array $token): bool
155157
{
156-
return \is_array($token) && ($token[0] === T_CLASS || $token[0] === T_INTERFACE || $token[0] === T_TRAIT);
158+
return $token[0] === T_CLASS || $token[0] === T_INTERFACE || $token[0] === T_TRAIT;
157159
}
158160

159161
/**

src/Discovery/Discovery.php

+10-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
use Narrowspark\Discovery\Traits\GetGenericPropertyReaderTrait;
3737
use RecursiveDirectoryIterator;
3838
use RecursiveIteratorIterator;
39+
use ReflectionClass;
3940

4041
class Discovery implements PluginInterface, EventSubscriberInterface
4142
{
@@ -383,7 +384,15 @@ public function onPostUpdate(Event $event, array $operations = []): void
383384
foreach ((array) $this->lock->get(ConfiguratorInstaller::LOCK_KEY) as $path => $class) {
384385
require_once $this->vendorPath . $path;
385386

386-
$this->configurator->add($class::getName(), $class);
387+
if (! \class_exists($class)) {
388+
continue;
389+
}
390+
391+
$reflectionClass = new ReflectionClass($class);
392+
393+
if ($reflectionClass->isInstantiable() && $reflectionClass->hasMethod('getName')) {
394+
$this->configurator->add($class::getName(), $class);
395+
}
387396
}
388397

389398
foreach ($packages as $package) {

tests/Discovery/ClassFinderTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace Narrowspark\Discovery\Test;
44

55
use Narrowspark\Discovery\ClassFinder;
6+
use Narrowspark\Discovery\Test\Fixtures\Finder\AbstractClass;
67
use Narrowspark\Discovery\Test\Fixtures\Finder\DummyClass;
78
use Narrowspark\Discovery\Test\Fixtures\Finder\DummyClassTwo;
89
use Narrowspark\Discovery\Test\Fixtures\Finder\FooTrait;
@@ -19,6 +20,7 @@ public function testItFindsAllClassesInDirectoryWithGivenNamespace(): void
1920
self::assertContains(DummyClassTwo::class, $classes);
2021
self::assertContains(DummyClassNested::class, $classes);
2122
self::assertContains(FooTrait::class, $classes);
23+
self::assertContains(AbstractClass::class, $classes);
2224
}
2325

2426
public function testWithEmptyFolder(): void
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
declare(strict_types=1);
3+
namespace Narrowspark\Discovery\Test\Fixtures\Finder;
4+
5+
use Narrowspark\Discovery\Common\Contract\Configurator as ConfiguratorContract;
6+
7+
abstract class AbstractClass implements ConfiguratorContract
8+
{
9+
}

0 commit comments

Comments
 (0)