From 70b7f6ac3e178d468be64bd0e4fa4ffca387c02e Mon Sep 17 00:00:00 2001
From: Liam Morland <lkmorlan@uwaterloo.ca>
Date: Wed, 23 Mar 2022 16:14:32 -0400
Subject: [PATCH] Issue #3044734: Fix coding standards

---
 fillpdf.install                                    | 10 ++++++++--
 src/Entity/FillPdfForm.php                         | 10 ++++++++--
 src/Form/FillPdfSettingsForm.php                   | 10 ++++++++--
 src/Plugin/PdfBackend/FillPdfServicePdfBackend.php |  2 +-
 4 files changed, 25 insertions(+), 7 deletions(-)

diff --git a/fillpdf.install b/fillpdf.install
index 11b969d..0f4a910 100644
--- a/fillpdf.install
+++ b/fillpdf.install
@@ -227,7 +227,10 @@ function fillpdf_update_8111() {
     ->setDescription("Select the type of PDFtk encryption you'd like to use. You should choose 128-bit unless you know otherwise.")
     ->setCardinality(1)
     ->setSettings([
-      'allowed_values_function' => [PdftkPdfBackend::class, 'getEncryptionOptions'],
+      'allowed_values_function' => [
+        PdftkPdfBackend::class,
+        'getEncryptionOptions',
+      ],
     ])
     ->setDisplayOptions('form', [
       'type' => 'options_select',
@@ -239,7 +242,10 @@ function fillpdf_update_8111() {
     ->setCardinality(-1)
     ->setDescription('Choose the permissions the user should have for the encrypted PDF. If they enter the Owner Password, they will be able to unlock it. <strong>If you do not specify any permissions, then none of these operations will be allowed.</strong>')
     ->setSettings([
-      'allowed_values_function' => [PdftkPdfBackend::class, 'getUserPermissionList'],
+      'allowed_values_function' => [
+        PdftkPdfBackend::class,
+        'getUserPermissionList',
+      ],
     ])
     ->setDisplayOptions('form', [
       'type' => 'options_select',
diff --git a/src/Entity/FillPdfForm.php b/src/Entity/FillPdfForm.php
index 9351e90..b54da35 100644
--- a/src/Entity/FillPdfForm.php
+++ b/src/Entity/FillPdfForm.php
@@ -159,7 +159,10 @@ class FillPdfForm extends ContentEntityBase implements FillPdfFormInterface {
       ->setDescription("Select the type of PDFtk encryption you'd like to use. You should choose 128-bit unless you know otherwise.")
       ->setCardinality(1)
       ->setSettings([
-        'allowed_values_function' => [PdftkPdfBackend::class, 'getEncryptionOptions'],
+        'allowed_values_function' => [
+          PdftkPdfBackend::class,
+          'getEncryptionOptions',
+        ],
       ])
       ->setDefaultValue(NULL)
       ->setDisplayOptions('form', [
@@ -172,7 +175,10 @@ class FillPdfForm extends ContentEntityBase implements FillPdfFormInterface {
       ->setCardinality(-1)
       ->setDescription('Choose the permissions the user should have for the encrypted PDF. If they enter the Owner Password, they will be able to unlock it. <strong>If you do not specify any permissions, then none of these operations will be allowed.</strong>')
       ->setSettings([
-        'allowed_values_function' => [PdftkPdfBackend::class, 'getUserPermissionList'],
+        'allowed_values_function' => [
+          PdftkPdfBackend::class,
+          'getUserPermissionList',
+        ],
       ])
       ->setDisplayOptions('form', [
         'type' => 'options_buttons',
diff --git a/src/Form/FillPdfSettingsForm.php b/src/Form/FillPdfSettingsForm.php
index 93dbc81..beb44a8 100644
--- a/src/Form/FillPdfSettingsForm.php
+++ b/src/Form/FillPdfSettingsForm.php
@@ -321,8 +321,14 @@ class FillPdfSettingsForm extends ConfigFormBase {
       // @todo We're working around Core issue #2190333, resp. #2854166.
       // Remove once one of these landed. See:
       // https://www.drupal.org/project/drupal/issues/2854166.
-      $form['shell_locale']['#process'][] = ['Drupal\Core\Render\Element\Select', 'processGroup'];
-      $form['shell_locale']['#pre_render'][] = ['Drupal\Core\Render\Element\Select', 'preRenderGroup'];
+      $form['shell_locale']['#process'][] = [
+        'Drupal\Core\Render\Element\Select',
+        'processGroup',
+      ];
+      $form['shell_locale']['#pre_render'][] = [
+        'Drupal\Core\Render\Element\Select',
+        'preRenderGroup',
+      ];
     }
 
     return $form;
diff --git a/src/Plugin/PdfBackend/FillPdfServicePdfBackend.php b/src/Plugin/PdfBackend/FillPdfServicePdfBackend.php
index 402f85e..24d90d2 100644
--- a/src/Plugin/PdfBackend/FillPdfServicePdfBackend.php
+++ b/src/Plugin/PdfBackend/FillPdfServicePdfBackend.php
@@ -42,7 +42,7 @@ class FillPdfServicePdfBackend extends PdfBackendBase {
     if ($result->error == TRUE) {
       // @todo Throw an exception, log a message etc.
       return [];
-    } // after setting error message
+    }
 
     $fields = $result->data;
 
-- 
GitLab