19 declare(strict_types=1);
34 foreach ($this->class_names as $class_name) {
60 #[\Attribute(\Attribute::TARGET_CLASS)] 65 #[\Attribute(\Attribute::TARGET_CLASS)] 70 #[\Attribute(\Attribute::TARGET_CLASS)] 96 $this->assertTrue($finder->isClassMatching(TestInterface1::class,
new \
ReflectionClass(TestClass1::class)));
97 $this->assertTrue($finder->isClassMatching(TestInterface2::class,
new \
ReflectionClass(TestClass2::class)));
98 $this->assertTrue($finder->isClassMatching(TestInterface1::class,
new \
ReflectionClass(TestClass3::class)));
99 $this->assertTrue($finder->isClassMatching(TestInterface2::class,
new \
ReflectionClass(TestClass3::class)));
101 $this->assertFalse($finder->isClassMatching(TestInterface3::class,
new \
ReflectionClass(TestClass3::class)));
102 $this->assertFalse($finder->isClassMatching(TestInterface3::class,
new \
ReflectionClass(TestClass2::class)));
103 $this->assertFalse($finder->isClassMatching(TestInterface3::class,
new \
ReflectionClass(TestClass1::class)));
109 $this->assertTrue($finder->isClassMatching(TestAttribute1::class,
new \
ReflectionClass(TestClass1::class)));
110 $this->assertTrue($finder->isClassMatching(TestAttribute2::class,
new \
ReflectionClass(TestClass2::class)));
111 $this->assertTrue($finder->isClassMatching(TestAttribute1::class,
new \
ReflectionClass(TestClass3::class)));
112 $this->assertTrue($finder->isClassMatching(TestAttribute2::class,
new \
ReflectionClass(TestClass3::class)));
114 $this->assertFalse($finder->isClassMatching(TestAttribute3::class,
new \
ReflectionClass(TestClass3::class)));
115 $this->assertFalse($finder->isClassMatching(TestAttribute3::class,
new \
ReflectionClass(TestClass2::class)));
116 $this->assertFalse($finder->isClassMatching(TestAttribute3::class,
new \
ReflectionClass(TestClass1::class)));
122 $finder->class_names = [
134 $this->assertEquals($expected, iterator_to_array($finder->getMatchingClassNames($all_true)));
138 $this->assertEquals($expected, iterator_to_array($finder->getMatchingClassNames($all_false)));
140 $only_class1 = fn (\
ReflectionClass $r):
bool => $r->getName() === TestClass1::class;
144 $this->assertEquals($expected, iterator_to_array($finder->getMatchingClassNames($only_class1)));
testClassImplementsInterface()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
testGenericClassMatching()
genericGetMatchingClassNames(callable $is_matching, array $additional_ignore=[], ?string $matching_path=null)
The matcher finds the class names implementing the given interface, while ignoring paths in self::$ig...
getAllClassNames(array $additional_ignore, ?string $matching_path=null)
getMatchingClassNames(callable $matcher)