Passed
Push — master ( db2920...0843be )
by Jonathan
06:01 queued 02:29
created
src/ReportingCloud.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
 
157 157
         if (is_array($records) && count($records) > 0) {
158 158
             $ret = $this->buildPropertyMapArray($records, $propertyMap);
159
-            array_walk($ret, function (&$record) {
159
+            array_walk($ret, function(&$record) {
160 160
                 $key = 'modified';
161 161
                 if (isset($record[$key])) {
162 162
                     $record[$key] = StaticFilter::execute($record[$key], 'DateTimeToTimestamp');
Please login to merge, or discard this patch.
src/PropertyMap/AccountSettings.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@
 block discarded – undo
33 33
             'maxDocuments'            => 'max_documents',
34 34
             'maxTemplates'            => 'max_templates',
35 35
             'validUntil'              => 'valid_until',
36
-            'proofingTransactions'    => 'proofing_transactions',       // added in 1.4.0
37
-            'maxProofingTransactions' => 'max_proofing_transactions',   // added in 1.4.0
36
+            'proofingTransactions'    => 'proofing_transactions', // added in 1.4.0
37
+            'maxProofingTransactions' => 'max_proofing_transactions', // added in 1.4.0
38 38
         ]);
39 39
     }
40 40
 }
Please login to merge, or discard this patch.
src/Validator/AbstractResourceValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      * @var array
38 38
      */
39 39
     protected $messageTemplates = [
40
-        self::INVALID_VALUE => '',  // added dynamically
40
+        self::INVALID_VALUE => '', // added dynamically
41 41
     ];
42 42
 
43 43
     /**
Please login to merge, or discard this patch.