diff --git a/core/lib/Drupal/Core/Template/Attribute.php b/core/lib/Drupal/Core/Template/Attribute.php index 1b18915..5373158 100644 --- a/core/lib/Drupal/Core/Template/Attribute.php +++ b/core/lib/Drupal/Core/Template/Attribute.php @@ -47,7 +47,7 @@ class Attribute implements ArrayAccess, IteratorAggregate { protected $storage = array(); /** - * Implements the magic __construct() method. + * Constructs an Attribute object. * * @param array $attributes * An associative array of key-value pairs to be converted to attributes. diff --git a/core/lib/Drupal/Core/Template/AttributeValueBase.php b/core/lib/Drupal/Core/Template/AttributeValueBase.php index e54a1e5..f23e6d8 100644 --- a/core/lib/Drupal/Core/Template/AttributeValueBase.php +++ b/core/lib/Drupal/Core/Template/AttributeValueBase.php @@ -36,7 +36,7 @@ abstract class AttributeValueBase { protected $name; /** - * Implements the magic __construct() method. + * Constructs an AttributeValueBase object. */ public function __construct($name, $value) { $this->name = $name;