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

shouldCall() public method

Every provider should only be called once per method / $id. Before calling a provider, TceMain will call this method. If the provider hasn't been called for that method / $id before, it is.
public shouldCall ( string $methodName, mixed $id, string $command = '' ) : boolean
$methodName string
$id mixed
$command string
return boolean
    public function shouldCall($methodName, $id, $command = '')
    {
        return self::shouldCallWithClassName(get_class($this), $methodName, $id, $command);
    }