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;
    }