FluidTYPO3\Flux\Provider\AbstractProvider::trackMethodCallWithClassName PHP 메소드

trackMethodCallWithClassName() 보호된 메소드

This is used by flux own provider to make sure on inheritance they are still only executed once.
protected trackMethodCallWithClassName ( string $className, string $methodName, mixed $id, string $command = '' ) : void
$className string
$methodName string
$id mixed
$command string
리턴 void
    protected function trackMethodCallWithClassName($className, $methodName, $id, $command = '')
    {
        $cacheKey = $className . $methodName . $id . $command;
        self::$trackedMethodCalls[$cacheKey] = TRUE;
    }