Completed
Push — master ( ba350c...9968d0 )
by Korvin
05:03
created
src/Console/Command/SiteCommand.php 1 patch
Doc Comments   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     /**
29 29
      * Get the command definitions this command provides
30 30
      *
31
-     * @param \Buttress\Concrete\Locator\Site|null $site
31
+     * @param Site $site
32 32
      * @return \Buttress\Concrete\Console\Command\Manager\CommandManager[]
33 33
      * @throws \Exception
34 34
      */
@@ -68,6 +68,9 @@  discard block
 block discarded – undo
68 68
         });
69 69
     }
70 70
 
71
+    /**
72
+     * @param string $path
73
+     */
71 74
     private function locateWebroots($path)
72 75
     {
73 76
         $flags = FS::CURRENT_AS_PATHNAME | FS::SKIP_DOTS;
@@ -82,7 +85,7 @@  discard block
 block discarded – undo
82 85
 
83 86
     /**
84 87
      * @param \RecursiveDirectoryIterator $iterator
85
-     * @return \RecursiveDirectoryIterator[]
88
+     * @return \Generator
86 89
      */
87 90
     private function directoryGenerator(\RecursiveDirectoryIterator $iterator)
88 91
     {
@@ -102,7 +105,7 @@  discard block
 block discarded – undo
102 105
     }
103 106
     /**
104 107
      * @param \RecursiveDirectoryIterator $iterator
105
-     * @return \RecursiveDirectoryIterator[]
108
+     * @return \Generator
106 109
      */
107 110
     private function visibleChildren(\RecursiveDirectoryIterator $iterator)
108 111
     {
Please login to merge, or discard this patch.