Completed
Push — master ( 706e3c...232af6 )
by Ricardo
14:38
created
src/Repositories/FileRepository.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,6 @@
 block discarded – undo
29 29
     /**
30 30
      * Stores Files into database.
31 31
      *
32
-     * @param array $input
33 32
      *
34 33
      * @return Files
35 34
      */
Please login to merge, or discard this patch.
src/Repositories/ImageRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
     /**
132 132
      * Updates Images
133 133
      *
134
-     * @param Images $images
134
+     * @param Images $image
135 135
      * @param array  $input
136 136
      *
137 137
      * @return Images
Please login to merge, or discard this patch.
src/Spider/SpiderLinuxCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@
 block discarded – undo
215 215
     /**
216 216
      * Create an empty analysis result.
217 217
      *
218
-     * @return AnalysisResult instance.
218
+     * @return \Finder\Logic\AnalysisResult instance.
219 219
      */
220 220
     protected function createResult()
221 221
     {
Please login to merge, or discard this patch.
src/Console/Commands/Prepare/ExcelPrepare.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -61,6 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     /**
63 63
      * Tirardaqui
64
+     * @param string $folder
64 65
      */
65 66
     public function importFromFolder($folder)
66 67
     {
@@ -74,6 +75,10 @@  discard block
 block discarded – undo
74 75
             // $collections = (new FastExcel)
75 76
                 ->import(
76 77
                     storage_path('app/'.$file),
78
+
79
+                    /**
80
+                     * @param string $line
81
+                     */
77 82
                     function ($line) use ($fileName, $assuntosDaPasta) {
78 83
                         $modelClass = RespectiveModel::run(
79 84
                             $assuntosDaPasta,
Please login to merge, or discard this patch.
src/Console/External/Explorer/DirectoryExplorer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -314,7 +314,7 @@
 block discarded – undo
314 314
      * Get argument value from user informed arguments.
315 315
      *
316 316
      * @param  string $name argument name.
317
-     * @return Mixed argument value.
317
+     * @return string argument value.
318 318
      */
319 319
     protected function getArgumentValue($name)
320 320
     {
Please login to merge, or discard this patch.
src/Contracts/Spider/Track.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@
 block discarded – undo
40 40
         return $this->parent;
41 41
     }
42 42
 
43
+    /**
44
+     * @param boolean $parent
45
+     */
43 46
     public function setParent($parent)
44 47
     {
45 48
         $this->parent = $parent;
Please login to merge, or discard this patch.