From 2c23bd24f2064fc057dfb202a7c79f5d1010282c Mon Sep 17 00:00:00 2001
From: owenbush <ojb@ukhhf.co.uk>
Date: Mon, 27 Apr 2020 14:08:21 -0600
Subject: [PATCH] Address two coding standards issues caused by recent patches

---
 .../recurring_events_registration/src/Form/RegistrantForm.php   | 2 +-
 src/Plugin/Field/FieldFormatter/EventInstanceDateFormatter.php  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/recurring_events_registration/src/Form/RegistrantForm.php b/modules/recurring_events_registration/src/Form/RegistrantForm.php
index 95ccb0f4..274c158c 100644
--- a/modules/recurring_events_registration/src/Form/RegistrantForm.php
+++ b/modules/recurring_events_registration/src/Form/RegistrantForm.php
@@ -242,7 +242,7 @@ class RegistrantForm extends ContentEntityForm {
         '#type' => 'markup',
         '#prefix' => '<span class="registration-availability">',
         '#markup' => $this->t('Spaces Available: @availability', [
-          '@availability' => ($availability == -1) ? $this->t('Unlimited') : $availability
+          '@availability' => ($availability == -1) ? $this->t('Unlimited') : $availability,
         ]),
         '#suffix' => '</span>',
         '#weight' => -99,
diff --git a/src/Plugin/Field/FieldFormatter/EventInstanceDateFormatter.php b/src/Plugin/Field/FieldFormatter/EventInstanceDateFormatter.php
index 5f2d0f3f..9d1103ee 100644
--- a/src/Plugin/Field/FieldFormatter/EventInstanceDateFormatter.php
+++ b/src/Plugin/Field/FieldFormatter/EventInstanceDateFormatter.php
@@ -155,7 +155,7 @@ class EventInstanceDateFormatter extends EntityReferenceFormatterBase {
       $elements[$delta]['#cache']['tags'] = $entity->getCacheTags();
     }
 
-    usort($elements, function($a, $b) {
+    usort($elements, function ($a, $b) {
       $a_date = $a['#options']['entity']->date->start_date->getTimestamp();
       $b_date = $b['#options']['entity']->date->start_date->getTimestamp();
       if ($a_date == $b_date) {
-- 
GitLab