Neos\Flow\Session\Aspect\LoggingAspect::getClassName PHP Метод

getClassName() защищенный Метод

Determines the short or full class name of the session implementation
protected getClassName ( Neos\Flow\Aop\JoinPointInterface $joinPoint ) : string
$joinPoint Neos\Flow\Aop\JoinPointInterface
Результат string
    protected function getClassName(JoinPointInterface $joinPoint)
    {
        $className = $joinPoint->getClassName();
        if (strpos($className, \Neos\Flow\Session::class) === 0) {
            $className = trim(substr($className, strlen(\Neos\Flow\Session::class)), '\\');
        }
        return $className;
    }