diff --git a/core/lib/Drupal/Core/Template/Attribute.php b/core/lib/Drupal/Core/Template/Attribute.php index 1b18915..3004c71 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 a \Drupal\Core\Template\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..0831afa 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 a \Drupal\Core\Template\AttributeValueBase object. */ public function __construct($name, $value) { $this->name = $name;