Go\Aop\Support\PointcutBuilder::getPointcutId PHP Method

getPointcutId() private method

Returns a unique name for pointcut expression
private getPointcutId ( string $pointcutExpression ) : string
$pointcutExpression string
return string
    private function getPointcutId($pointcutExpression)
    {
        static $index = 0;
        return preg_replace('/\\W+/', '_', $pointcutExpression) . '.' . $index++;
    }