public function Attribute::offsetExists

Implements ArrayAccess::offsetExists().

File

drupal/core/lib/Drupal/Core/Template/Attribute.php, line 95
Definition of Drupal\Core\Template\Attribute.

Class

Attribute
A class that can be used for collecting then rendering HTML attributtes.

Namespace

Drupal\Core\Template

Code

public function offsetExists($name) {
  return isset($this->storage[$name]);
}