Completed
Push — master ( 23728e...b00e9b )
by Vladimir
02:51
created
src/allejo/stakx/Service.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@
 block discarded – undo
30 30
         return self::$workingDirectory;
31 31
     }
32 32
 
33
+    /**
34
+     * @param string|null $directory
35
+     */
33 36
     public static function setWorkingDirectory($directory)
34 37
     {
35 38
         self::$workingDirectory = $directory;
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,9 @@
 block discarded – undo
25 25
     public static function getWorkingDirectory()
26 26
     {
27 27
         if (!self::$workingDirectory)
28
-            return getcwd();
28
+        {
29
+                    return getcwd();
30
+        }
29 31
 
30 32
         return self::$workingDirectory;
31 33
     }
Please login to merge, or discard this patch.