diff --git a/core/lib/Drupal/Core/Config/Entity/DraggableListBuilder.php b/core/lib/Drupal/Core/Config/Entity/DraggableListBuilder.php index c06ca01e22..a9d790829e 100644 --- a/core/lib/Drupal/Core/Config/Entity/DraggableListBuilder.php +++ b/core/lib/Drupal/Core/Config/Entity/DraggableListBuilder.php @@ -32,7 +32,7 @@ public function __construct(EntityTypeInterface $entity_type, EntityStorageInter * {@inheritdoc} */ protected function getWeight(EntityInterface $entity) { - /* @var \Drupal\Core\Config\Entity\ConfigEntityInterface $entity */ + /** @var \Drupal\Core\Config\Entity\ConfigEntityInterface $entity */ return $entity->get($this->weightKey); } @@ -40,7 +40,7 @@ protected function getWeight(EntityInterface $entity) { * {@inheritdoc} */ protected function setWeight(EntityInterface $entity, $weight) { - /* @var \Drupal\Core\Config\Entity\ConfigEntityInterface $entity */ + /** @var \Drupal\Core\Config\Entity\ConfigEntityInterface $entity */ $entity->set($this->weightKey, $weight); return $entity; }