Completed
Pull Request — master (#34)
by
unknown
09:56
created
src/Container/Local.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -7,6 +7,9 @@  discard block
 block discarded – undo
7 7
 {
8 8
     protected $baseDirectory;
9 9
 
10
+    /**
11
+     * @param string $baseDirectory
12
+     */
10 13
     public function __construct($baseDirectory)
11 14
     {
12 15
         $this->baseDirectory = $this->normalizePath($baseDirectory) . DIRECTORY_SEPARATOR;
@@ -20,6 +23,9 @@  discard block
 block discarded – undo
20 23
         return rtrim($path, DIRECTORY_SEPARATOR);
21 24
     }
22 25
 
26
+    /**
27
+     * @param string $directory
28
+     */
23 29
     protected function ensureDirectory($directory):bool
24 30
     {
25 31
         if (!file_exists($directory)) {
Please login to merge, or discard this patch.