Passed
Branch development (0505ff)
by Jonathan
08:42
created
src/GetTrait.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -332,7 +332,7 @@
 block discarded – undo
332 332
      *
333 333
      * @throws InvalidArgumentException
334 334
      *
335
-     * @return null|resource
335
+     * @return string|null
336 336
      */
337 337
     public function downloadTemplate($templateName)
338 338
     {
Please login to merge, or discard this 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/PostTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
      *
70 70
      * @throws InvalidArgumentException
71 71
      *
72
-     * @return null|resource
72
+     * @return string|null
73 73
      */
74 74
     public function convertDocument($documentFilename, $returnFormat)
75 75
     {
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
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     protected $messageTemplates
40 40
         = [
41
-            self::INVALID_VALUE => '',  // added dynamically
41
+            self::INVALID_VALUE => '', // added dynamically
42 42
         ];
43 43
 
44 44
     /**
Please login to merge, or discard this patch.