Completed
Pull Request — master (#66)
by
unknown
01:44
created
src/Commands/ResourceCommand.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -168,6 +168,9 @@  discard block
 block discarded – undo
168 168
 
169 169
     }
170 170
 
171
+    /**
172
+     * @param string $tag
173
+     */
171 174
     protected function fieldsHavingTag($tag)
172 175
     {
173 176
         return array_map(function($field){
@@ -199,6 +202,9 @@  discard block
 block discarded – undo
199 202
         }, $this->fields);
200 203
     }
201 204
 
205
+    /**
206
+     * @return string
207
+     */
202 208
     protected function getBaseModel($path) {
203 209
         $index = strrpos($path, "\\");
204 210
         if($index) {
Please login to merge, or discard this patch.
src/Commands/BaseCommand.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -21,16 +21,25 @@  discard block
 block discarded – undo
21 21
         $this->argumentFormatLoader = new ArgumentFormatLoader($fs);
22 22
     }
23 23
 
24
+    /**
25
+     * @param string $name
26
+     */
24 27
     protected function getTemplate($name)
25 28
     {
26 29
         return $this->templates->load($name);
27 30
     }
28 31
 
32
+    /**
33
+     * @param string $name
34
+     */
29 35
     protected function getArgumentParser($name){
30 36
         $format = $this->argumentFormatLoader->load($name);
31 37
         return new ArgumentParser($format);
32 38
     }
33 39
 
40
+    /**
41
+     * @param string $content
42
+     */
34 43
     protected function save($content, $path, $name, $force = false)
35 44
     {
36 45
         if (!$force && $this->fs->exists($path) && $this->input->hasOption('force') && !$this->option('force')) {
@@ -49,6 +58,9 @@  discard block
 block discarded – undo
49 58
         }
50 59
     }
51 60
 
61
+    /**
62
+     * @param integer $n
63
+     */
52 64
     protected function spaces($n): string
53 65
     {
54 66
         return str_repeat(' ', $n);
Please login to merge, or discard this patch.