ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ImplementationOfInterfaceFinder.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Setup;
22 
28 class ImplementationOfInterfaceFinder extends AbstractOfFinder
29 {
30  public function getMatchingClassNames(
31  string $interface,
32  array $additional_ignore = [],
33  ?string $matching_path = null
34  ): \Iterator {
36  fn (\ReflectionClass $r) => $this->isClassMatching($interface, $r),
37  $additional_ignore,
38  $matching_path
39  );
40  }
41 
42  public function isClassMatching(string $interface, \ReflectionClass $r): bool
43  {
44  return ($r->isInstantiable() && $r->implementsInterface($interface));
45  }
46 }
getMatchingClassNames(string $interface, array $additional_ignore=[], ?string $matching_path=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
isClassMatching(string $interface, \ReflectionClass $r)
$r