@@ -78,7 +78,7 @@ discard block |
||
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 |
||
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'; |
@@ -29,7 +29,7 @@ |
||
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, |
@@ -23,7 +23,7 @@ |
||
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, |
@@ -29,7 +29,7 @@ |
||
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, |
@@ -38,7 +38,7 @@ |
||
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, |
@@ -27,7 +27,7 @@ |
||
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, |
@@ -34,7 +34,7 @@ |
||
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, |
@@ -23,7 +23,7 @@ |
||
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, |
@@ -40,7 +40,7 @@ |
||
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, |