Completed
Pull Request — master (#10)
by
unknown
01:29
created
src/Utils/FunctionReflection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         $vars = $functionReflection->getStaticVariables();
27 27
 
28 28
         foreach ($vars as $name => $value) {
29
-            $functionStringValue .= '$' . $name . ' = unserialize(\'' . serialize($value) . '\');'.PHP_EOL;
29
+            $functionStringValue .= '$'.$name.' = unserialize(\''.serialize($value).'\');'.PHP_EOL;
30 30
         }
31 31
 
32 32
         $file = file($functionReflection->getFileName());
Please login to merge, or discard this patch.