Completed
Push — master ( 14e2f5...fd8bf7 )
by Jonathan
02:27
created
src/Validator/Timestamp.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,9 +66,9 @@
 block discarded – undo
66 66
         }
67 67
 
68 68
         $betweenValidator = new BetweenValidator([
69
-             'min'       => 0,
70
-             'max'       => PHP_INT_MAX,
71
-             'inclusive' => true
69
+                'min'       => 0,
70
+                'max'       => PHP_INT_MAX,
71
+                'inclusive' => true
72 72
         ]);
73 73
 
74 74
         if (!$betweenValidator->isValid($value)) {
Please login to merge, or discard this patch.
src/ReportingCloud.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -393,7 +393,7 @@
 block discarded – undo
393 393
         if (null !== $append) {
394 394
             StaticValidator::execute($append, 'TypeBoolean');
395 395
             if (true === $append) {
396
-                $append = 'true';  // This boolean value MUST be passed as a string to prevent Guzzle converting the
396
+                $append = 'true'; // This boolean value MUST be passed as a string to prevent Guzzle converting the
397 397
             } else {               // query parameter to ?append=0 or ?append=1, which the backend does not recognize.
398 398
                 $append = 'false'; // The backend only recognizes query parameter ?append=true and ?append=false.
399 399
             }
Please login to merge, or discard this patch.
src/Validator/TemplateFormat.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
     public function __construct($options = [])
29 29
     {
30
-        $options['haystack'] = ['DOC', 'DOCX', 'RTF', 'TX',];
30
+        $options['haystack'] = ['DOC', 'DOCX', 'RTF', 'TX', ];
31 31
 
32 32
         parent::__construct($options);
33 33
     }
Please login to merge, or discard this patch.
src/Validator/ReturnFormat.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
     public function __construct($options = [])
29 29
     {
30
-        $options['haystack'] = ['DOC', 'DOCX', 'HTML', 'PDF', 'RTF', 'TX',];
30
+        $options['haystack'] = ['DOC', 'DOCX', 'HTML', 'PDF', 'RTF', 'TX', ];
31 31
 
32 32
         parent::__construct($options);
33 33
     }
Please login to merge, or discard this patch.
src/Validator/DocumentExtension.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
     public function __construct($options = [])
29 29
     {
30
-        $options['haystack'] = ['DOC', 'DOCX', 'HTML', 'PDF', 'RTF', 'TX',];
30
+        $options['haystack'] = ['DOC', 'DOCX', 'HTML', 'PDF', 'RTF', 'TX', ];
31 31
 
32 32
         parent::__construct($options);
33 33
     }
Please login to merge, or discard this patch.