diff --git a/module/VuFind/src/VuFind/Auth/LDAP.php b/module/VuFind/src/VuFind/Auth/LDAP.php
index a2d8f2bf34602a506882d8874fb552a618cd1add..81a96c9dad936055a16095bd61135c0076b30a11 100644
--- a/module/VuFind/src/VuFind/Auth/LDAP.php
+++ b/module/VuFind/src/VuFind/Auth/LDAP.php
@@ -292,7 +292,7 @@ class LDAP extends AbstractBase
                         } else {
                             $value = $value[0];
                         }
-                        
+
                         if ($field != "cat_password") {
                             $user->$field = ($value === null) ? '' : $value;
                         } else {
diff --git a/module/VuFind/src/VuFind/ILS/Driver/DAIA.php b/module/VuFind/src/VuFind/ILS/Driver/DAIA.php
index d23e75365f27730078d749a6cb379a12682a419c..264db8017f26de42ffc6bd07c00ae4d694b66463 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/DAIA.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/DAIA.php
@@ -934,7 +934,7 @@ class DAIA extends AbstractBase implements
         $return['customData']      = $this->getCustomData($item);
 
         $return['limitation_types'] = $item_limitation_types;
-        
+
         return $return;
     }
 
diff --git a/module/VuFind/src/VuFind/ILS/Driver/Koha.php b/module/VuFind/src/VuFind/ILS/Driver/Koha.php
index 4370f366fd3add77c658bdc41b0d7d578dcb4e33..e718417bb25f00b7df4e018ef994e29e556aba3f 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/Koha.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/Koha.php
@@ -598,7 +598,7 @@ class Koha extends AbstractBase
         $sql = "select borrowernumber as ID, firstname as FNAME, " .
             "surname as LNAME, email as EMAIL from borrowers " .
             "where userid = :username";
-        
+
         $parameters = [':username' => $username];
 
         if ($this->validatePasswords) {
diff --git a/module/VuFind/src/VuFind/ILS/Driver/KohaILSDI.php b/module/VuFind/src/VuFind/ILS/Driver/KohaILSDI.php
index bfeaa40a1409de33c2e0260d9288d73bafc73918..0995fdfc49a33032bfd190d72078093c58f0be6b 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/KohaILSDI.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/KohaILSDI.php
@@ -1114,7 +1114,7 @@ class KohaILSDI extends \VuFind\ILS\Driver\AbstractBase implements
                     $fineValue = "Unknown Charge";
                     break;
                 }
- 
+
                 $transactionLst[] = [
                            'amount'     => $row['amount'],
                            'checkout'   => "N/A",
diff --git a/module/VuFind/src/VuFind/ILS/Driver/Polaris.php b/module/VuFind/src/VuFind/ILS/Driver/Polaris.php
index b497a05572a9f95c5f024cce06bf923067c29c6e..7ad51607878f4d1342559cbfe70e1ff06455db7c 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/Polaris.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/Polaris.php
@@ -426,7 +426,7 @@ class Polaris extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterf
                 "holdrequest/{$response->RequestGUID}", 'PUT', '',
                 $reply_jsonrequest
             );
-      
+
             if ($reply_response->StatusValue == 1) {
                 // auto-reply success
                 return [ 'success' => true,  'sysMessage' => $response->Message ];
@@ -876,7 +876,7 @@ class Polaris extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterf
                 . "$items_per_page&page=$page_offset", 'GET',
                 $patron['cat_password']
             );
-    
+
             $checkout_history_array = $response->PatronReadingHistoryGetRows;
             foreach ($checkout_history_array as $checkout_response) {
                 $date = $this->formatJSONTime($checkout_response->CheckOutDate);
@@ -950,7 +950,7 @@ class Polaris extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterf
                  'UserID' => '1',
                  'ActivationDate' => "$jsondate"
                 ];
-    
+
             $response = $this->makeRequest(
                 "patron/{$patron['cat_username']}/holdrequests/$hold_id/inactive",
                 'PUT', $patron['cat_password'], $jsonrequest
@@ -1016,7 +1016,7 @@ class Polaris extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterf
                  'UserID' => '1',
                  'ActivationDate' => "$jsondate"
                  ];
-    
+
             $response = $this->makeRequest(
                 "patron/{$patron['cat_username']}/holdrequests/$hold_id/active",
                 'PUT', $patron['cat_password'], $jsonrequest
diff --git a/module/VuFind/src/VuFind/Log/Writer/Mail.php b/module/VuFind/src/VuFind/Log/Writer/Mail.php
index 853fbc03ae607357f6dd5075ce775af5535c0629..02e56cd5d33f01ee586b380bda1d745da21fd5c6 100644
--- a/module/VuFind/src/VuFind/Log/Writer/Mail.php
+++ b/module/VuFind/src/VuFind/Log/Writer/Mail.php
@@ -39,7 +39,7 @@ namespace VuFind\Log\Writer;
 class Mail extends \Zend\Log\Writer\Mail
 {
     use VerbosityTrait;
-    
+
     /**
      * Write a message to the log.
      *
diff --git a/module/VuFind/src/VuFind/Resolver/Driver/Ezb.php b/module/VuFind/src/VuFind/Resolver/Driver/Ezb.php
index 67f932b67c1e7c938438d5932242343ceccc9cbb..785247c2545fe8dd27b3caf88830750c8bb71b2b 100644
--- a/module/VuFind/src/VuFind/Resolver/Driver/Ezb.php
+++ b/module/VuFind/src/VuFind/Resolver/Driver/Ezb.php
@@ -221,7 +221,7 @@ class Ezb extends AbstractBase
 
         return implode('&', $downgraded);
     }
-    
+
     /**
      * Extract electronic results from the EZB response and inject them into the
      * $records array.
diff --git a/module/VuFind/src/VuFind/Role/PermissionProvider/Factory.php b/module/VuFind/src/VuFind/Role/PermissionProvider/Factory.php
index c3863bdc792c62d9d0dca9d909d5122dfea4994d..2e1c6423c411a34e1024618538ce60f5d5f2f8d2 100644
--- a/module/VuFind/src/VuFind/Role/PermissionProvider/Factory.php
+++ b/module/VuFind/src/VuFind/Role/PermissionProvider/Factory.php
@@ -109,7 +109,7 @@ class Factory
             $sm->getServiceLocator()->get('ZfcRbac\Service\AuthorizationService')
         );
     }
-    
+
     /**
      * Factory for User
      *
diff --git a/module/VuFind/src/VuFind/Search/Pazpar2/Options.php b/module/VuFind/src/VuFind/Search/Pazpar2/Options.php
index 1561404121cc8e6e416bd29004dae9a0f5c35727..79c26bec00b22d74d0e99cbe1088215042c45e3e 100644
--- a/module/VuFind/src/VuFind/Search/Pazpar2/Options.php
+++ b/module/VuFind/src/VuFind/Search/Pazpar2/Options.php
@@ -49,7 +49,7 @@ class Options extends \VuFind\Search\Base\Options
         $this->searchIni = $this->facetsIni = 'Pazpar2';
 
         $this->limitOptions = [$this->defaultLimit];
-        
+
         // Load source settings
         $searchSettings = $configLoader->get($this->searchIni);
         if (isset($searchSettings->IndexSources)
diff --git a/module/VuFind/src/VuFind/Search/SolrAuthor/Params.php b/module/VuFind/src/VuFind/Search/SolrAuthor/Params.php
index 65938234da242532093394bc6f76340f2e570454..93475648ccc5e2b9f77321312d2f29b44b2bd799 100644
--- a/module/VuFind/src/VuFind/Search/SolrAuthor/Params.php
+++ b/module/VuFind/src/VuFind/Search/SolrAuthor/Params.php
@@ -56,7 +56,7 @@ class Params extends \VuFind\Search\Solr\Params
 
         // Force the search to be a phrase:
         $lookfor = '"' . str_replace('"', '\"', $lookfor) . '"';
-        
+
         // Set the search (handler is always Author for this module):
         $this->setBasicSearch($lookfor, 'Author');
         return true;
diff --git a/module/VuFind/tests/unit-tests/src/VuFindTest/Role/PermissionProvider/UserTest.php b/module/VuFind/tests/unit-tests/src/VuFindTest/Role/PermissionProvider/UserTest.php
index 8c10716b89c268d823d3932eaa22baab688bbd2a..5dac577db3d889418d256f313f1d1be60b40044e 100644
--- a/module/VuFind/tests/unit-tests/src/VuFindTest/Role/PermissionProvider/UserTest.php
+++ b/module/VuFind/tests/unit-tests/src/VuFindTest/Role/PermissionProvider/UserTest.php
@@ -46,8 +46,7 @@ class UserTest extends \VuFindTest\Unit\TestCase
                 ['username','mbeh'],
                 ['email','markus.beh@ub.uni-freiburg.de'],
                 ['college', 'Albert Ludwigs Universität Freiburg']
-        ]
-        ,
+        ],
         'testuser2' =>
         [
                 ['username','mbeh2'],
diff --git a/module/VuFind/tests/unit-tests/src/VuFindTest/Solr/UtilsTest.php b/module/VuFind/tests/unit-tests/src/VuFindTest/Solr/UtilsTest.php
index 8341b0e28acbe1ce730f3697fae402075e0eadb2..4ad40c50a631da3411ee9046a1b7f0434233b95d 100644
--- a/module/VuFind/tests/unit-tests/src/VuFindTest/Solr/UtilsTest.php
+++ b/module/VuFind/tests/unit-tests/src/VuFindTest/Solr/UtilsTest.php
@@ -90,7 +90,7 @@ class UtilsTest extends \VuFindTest\Unit\TestCase
             '2nd Quarter 2004' => '2004-01-01',
             'Nov 2009 and Dec 2009' => '2009-01-01',
         ];
-        
+
         foreach ($tests as $in => $out) {
             $this->assertEquals(
                 $out === null ? null : $out . 'T00:00:00Z', // append standard time value unless null
diff --git a/module/VuFindSearch/src/VuFindSearch/Backend/EDS/SearchRequestModel.php b/module/VuFindSearch/src/VuFindSearch/Backend/EDS/SearchRequestModel.php
index f7f99a0488395796db0cc740154d175009c08789..196ca7e1695e6b5d5f4b7c50dea2ddc6caba655a 100644
--- a/module/VuFindSearch/src/VuFindSearch/Backend/EDS/SearchRequestModel.php
+++ b/module/VuFindSearch/src/VuFindSearch/Backend/EDS/SearchRequestModel.php
@@ -380,7 +380,7 @@ class SearchRequestModel
     {
         return addcslashes($value, ":,");
     }
-    
+
     /**
      * Escape characters that may be present in the action parameter syntax
      *