FluidTYPO3\Flux\Provider\AbstractProvider::shouldCallWithClassName PHP Method

shouldCallWithClassName() protected method

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