Home
last modified time | relevance | path

Searched refs:findFileForClass (Results 1 – 4 of 4) sorted by relevance

/plugin/findologicxmlexport/vendor/jms/metadata/tests/Driver/
H A DFileLocatorTest.php21 …rtEquals(realpath(__DIR__ . '/Fixture/A/A.xml'), realpath($locator->findFileForClass($ref, 'xml'))…
24 $this->assertNull($locator->findFileForClass($ref, 'xml'));
27 …s(realpath(__DIR__ . '/Fixture/C/SubDir.C.yml'), realpath($locator->findFileForClass($ref, 'yml'))…
41 …rtEquals(realpath(__DIR__ . '/Fixture/T/T.xml'), realpath($locator->findFileForClass($ref, 'xml'))…
52 …rtEquals(realpath(__DIR__ . '/Fixture/D/D.yml'), realpath($locator->findFileForClass($ref, 'yml'))…
/plugin/findologicxmlexport/vendor/jms/metadata/src/Driver/
H A DFileLocatorInterface.php9 public function findFileForClass(\ReflectionClass $class, string $extension): ?string; function
H A DAbstractFileDriver.php28 if (null === $path = $this->locator->findFileForClass($class, $this->getExtension())) {
H A DFileLocator.php22 public function findFileForClass(\ReflectionClass $class, string $extension): ?string function in Metadata\\Driver\\FileLocator