Completed
Push — master ( 21f90a...53ff33 )
by Paul
02:26
created
src/Request/SIP2Request.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
             //$this->logger->debug("SIP2: Skipping optional field {$field}");
79 79
         } else {
80 80
             $this->noFixed = true; /* no more fixed for this message */
81
-            $this->msgBuild .= $field . substr($value, 0, 255) . $this->fldTerminator;
81
+            $this->msgBuild .= $field.substr($value, 0, 255).$this->fldTerminator;
82 82
         }
83 83
         return true;
84 84
     }
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     {
88 88
         /* Finalizes the message and returns it.  Message will remain in msgBuild until newMessage is called */
89 89
         if ($withSeq) {
90
-            $this->msgBuild .= 'AY' . self::getSeqNumber();
90
+            $this->msgBuild .= 'AY'.self::getSeqNumber();
91 91
         }
92 92
         if ($withCrc) {
93 93
             $this->msgBuild .= 'AZ';
Please login to merge, or discard this patch.
src/Response/PatronStatusResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     ];
30 30
 
31 31
     //variable part of the response allowed to contain these...
32
-    protected $allowedVariables=[
32
+    protected $allowedVariables = [
33 33
         self::AO_INSTITUTION_ID,
34 34
         self::AA_PATRON_IDENTIFIER,
35 35
         self::AE_PERSONAL_NAME,
Please login to merge, or discard this patch.
src/Response/FeePaidResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     ];
24 24
 
25 25
     //variable part of the response allowed to contain these...
26
-    protected $allowedVariables=[
26
+    protected $allowedVariables = [
27 27
         self::AO_INSTITUTION_ID,
28 28
         self::AA_PATRON_IDENTIFIER,
29 29
         self::BK_TRANSACTION_ID,
Please login to merge, or discard this patch.
src/Response/HoldResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     ];
30 30
 
31 31
     //variable part of the response allowed to contain these...
32
-    protected $allowedVariables=[
32
+    protected $allowedVariables = [
33 33
         self::BW_EXPIRATION_DATE,
34 34
         self::BR_QUEUE_POSITION,
35 35
         self::BS_PICKUP_LOCATION,
Please login to merge, or discard this patch.
src/Response/CheckOutResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     ];
39 39
 
40 40
     //variable part of the response allowed to contain these...
41
-    protected $allowedVariables=[
41
+    protected $allowedVariables = [
42 42
         self::AO_INSTITUTION_ID,
43 43
         self::AA_PATRON_IDENTIFIER,
44 44
         self::AB_ITEM_IDENTIFIER,
Please login to merge, or discard this patch.
src/Response/RenewAllResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     ];
28 28
 
29 29
     //variable part of the response allowed to contain these...
30
-    protected $allowedVariables=[
30
+    protected $allowedVariables = [
31 31
         self::AO_INSTITUTION_ID,
32 32
         self::BM_RENEWED_ITEMS,
33 33
         self::BN_UNRENEWED_ITEMS,
Please login to merge, or discard this patch.
src/Response/CheckInResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     ];
35 35
 
36 36
     //variable part of the response allowed to contain these...
37
-    protected $allowedVariables=[
37
+    protected $allowedVariables = [
38 38
         self::AO_INSTITUTION_ID,
39 39
         self::AB_ITEM_IDENTIFIER,
40 40
         self::AQ_PERMANENT_LOCATION,
Please login to merge, or discard this patch.
src/Response/ItemStatusUpdateResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     ];
24 24
 
25 25
     //variable part of the response allowed to contain these...
26
-    protected $allowedVariables=[
26
+    protected $allowedVariables = [
27 27
         self::AB_ITEM_IDENTIFIER,
28 28
         self::AJ_TITLE_IDENTIFIER,
29 29
         self::CH_ITEM_PROPERTIES,
Please login to merge, or discard this patch.
src/Response/ACSStatusResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     ];
41 41
 
42 42
     //variable part of the response allowed to contain these...
43
-    protected $allowedVariables=[
43
+    protected $allowedVariables = [
44 44
         self::AO_INSTITUTION_ID,
45 45
         self::AM_LIBRARY_NAME,
46 46
         self::BX_SUPPORTED_MESSAGES,
Please login to merge, or discard this patch.