Completed
Push — develop ( 4ead7c...523147 )
by Jaap
10s
created
src/phpDocumentor/Reflection/File/LocalFile.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
     public function getContents(): string
42 42
     {
43
-        return (string) file_get_contents($this->path);
43
+        return (string)file_get_contents($this->path);
44 44
     }
45 45
 
46 46
     /**
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/Argument.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,6 +68,6 @@
 block discarded – undo
68 68
             $default = $this->valueConverter->prettyPrintExpr($object->default);
69 69
         }
70 70
 
71
-        return new ArgumentDescriptor((string) $object->var->name, $default, $object->byRef, $object->variadic);
71
+        return new ArgumentDescriptor((string)$object->var->name, $default, $object->byRef, $object->variadic);
72 72
     }
73 73
 }
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/PrettyPrinter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,6 +57,6 @@
 block discarded – undo
57 57
             return $node->value;
58 58
         }
59 59
 
60
-        return (string) $node->getAttribute('originalValue');
60
+        return (string)$node->getAttribute('originalValue');
61 61
     }
62 62
 }
Please login to merge, or discard this patch.