Neos\Flow\Tests\Functional\Aop\Fixtures\AbstractClassTestingAspect::abstractMethodInSubClassAdvice PHP Method

abstractMethodInSubClassAdvice() public method

public abstractMethodInSubClassAdvice ( Neos\Flow\Aop\JoinPointInterface $joinPoint ) : string
$joinPoint Neos\Flow\Aop\JoinPointInterface
return string
    public function abstractMethodInSubClassAdvice(JoinPointInterface $joinPoint)
    {
        $result = $joinPoint->getAdviceChain()->proceed($joinPoint);
        return $result . ' adviced';
    }