Files
archived-persistence/lib/Doctrine/Persistence/Mapping/StaticReflectionService.php
2021-05-16 11:01:03 +02:00

79 lines
1.4 KiB
PHP

<?php
declare(strict_types=1);
namespace Doctrine\Persistence\Mapping;
use function strpos;
use function strrev;
use function strrpos;
use function substr;
/**
* PHP Runtime Reflection Service.
*/
class StaticReflectionService implements ReflectionService
{
/**
* {@inheritDoc}
*/
public function getParentClasses(string $class)
{
return [];
}
/**
* {@inheritDoc}
*/
public function getClassShortName(string $className)
{
$nsSeparatorLastPosition = strrpos($className, '\\');
if ($nsSeparatorLastPosition !== false) {
$className = substr($className, $nsSeparatorLastPosition + 1);
}
return $className;
}
/**
* {@inheritDoc}
*/
public function getClassNamespace(string $className)
{
$namespace = '';
if (strpos($className, '\\') !== false) {
$namespace = strrev(substr(strrev($className), (int) strpos(strrev($className), '\\') + 1));
}
return $namespace;
}
/**
* {@inheritDoc}
*
* @return null
*/
public function getClass(string $class)
{
return null;
}
/**
* {@inheritDoc}
*/
public function getAccessibleProperty(string $class, string $property)
{
return null;
}
/**
* {@inheritDoc}
*/
public function hasPublicMethod(string $class, string $method)
{
return true;
}
}