Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / system / src / Form / DateFormatDeleteForm.php
index 901c34b1abfd48530e4aae0775ab1742d23bae7c..155803282500ce5dfaf1ba91fec28e2ba04bf209 100644 (file)
@@ -8,6 +8,8 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
  * Builds a form to delete a date format.
+ *
+ * @internal
  */
 class DateFormatDeleteForm extends EntityDeleteForm {
 
@@ -43,8 +45,8 @@ class DateFormatDeleteForm extends EntityDeleteForm {
   public function getQuestion() {
     return t('Are you sure you want to delete the format %name : %format?', [
       '%name' => $this->entity->label(),
-      '%format' => $this->dateFormatter->format(REQUEST_TIME, $this->entity->id())]
-    );
+      '%format' => $this->dateFormatter->format(REQUEST_TIME, $this->entity->id()),
+    ]);
   }
 
 }