Overrides ResolverInterface::hasVariable
public function hasVariable(string $variableName) : bool { $value = $this->accessor ->get($variableName); if ($value === []) { return false; } return $value !== false && !Configuration::isEmpty($value); }