From ad627bc891ae4056533e957e59937e43e49e3f25 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Fri, 8 Jul 2016 09:22:50 -0400
Subject: [PATCH] Style fix.

---
 module/VuFind/src/VuFind/ILS/Driver/NoILS.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/module/VuFind/src/VuFind/ILS/Driver/NoILS.php b/module/VuFind/src/VuFind/ILS/Driver/NoILS.php
index b34b62222ac..6c4a5593345 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/NoILS.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/NoILS.php
@@ -263,7 +263,8 @@ class NoILS extends AbstractBase implements TranslatorAwareInterface
             // ID prefix, strip it off!
             $idPrefix = $this->getIdPrefix();
             if (isset($result[0]['id']) && strlen($idPrefix)
-                && $idPrefix === substr($result[0]['id'], 0, strlen($idPrefix))) {
+                && $idPrefix === substr($result[0]['id'], 0, strlen($idPrefix))
+            ) {
                 $result[0]['id'] = substr($result[0]['id'], strlen($idPrefix));
             }
             return empty($result) ? [] : $result;
-- 
GitLab