Completed
Pull Request — master (#66)
by
unknown
01:47
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/ResourcesCommand.php 1 patch
Doc Comments   +16 added lines patch added patch discarded remove patch
@@ -291,6 +291,10 @@  discard block
 block discarded – undo
291 291
         return $string;
292 292
     }
293 293
 
294
+    /**
295
+     * @param string $old
296
+     * @param string $new
297
+     */
294 298
     protected function convertArray($list, $old, $new)
295 299
     {
296 300
         return implode($new, array_filter(explode($old, $list), function($item){
@@ -355,11 +359,17 @@  discard block
 block discarded – undo
355 359
         return array(array(), $seen);//, array($item)
356 360
     }
357 361
 
362
+    /**
363
+     * @param string $message
364
+     */
358 365
     protected function checkError($message, $model = "", $file = "") {
359 366
         $this->checkErrors[] = array("message" => $message, "model" => $model, "file" => $file);
360 367
         $this->checkedErrors++;
361 368
     }
362 369
 
370
+    /**
371
+     * @param string $message
372
+     */
363 373
     protected function checkInfo($message, $model = "", $file = "") {
364 374
         $this->checkInfo[] = array("message" => $message, "model" => $model, "file" => $file);
365 375
     }
@@ -373,6 +383,9 @@  discard block
 block discarded – undo
373 383
         }
374 384
     }
375 385
 
386
+    /**
387
+     * @param string $type
388
+     */
376 389
     protected function checkRelations($relations, $type, $file, $model, $keys) {
377 390
         if ($relations) {
378 391
             $position = array_search($model, $keys);
@@ -395,6 +408,9 @@  discard block
 block discarded – undo
395 408
         }
396 409
     }
397 410
 
411
+    /**
412
+     * @param string $rType
413
+     */
398 414
     protected function checkPivotRelations($relations, $rType) {
399 415
         if ($relations) {
400 416
             foreach($relations as $relation) {
Please login to merge, or discard this patch.