Completed
Push — master ( 7a1dba...8d9e6e )
by Ricardo
03:19
created
src/Console/Commands/Prepare/Export.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -47,6 +47,7 @@
 block discarded – undo
47 47
 
48 48
     /**
49 49
      * Tirardaqui
50
+     * @param string $folder
50 51
      */
51 52
     public function export($folder)
52 53
     {
Please login to merge, or discard this patch.
src/Console/Commands/Prepare/PhotosPrepare.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -56,6 +56,7 @@
 block discarded – undo
56 56
     /**
57 57
      * Execute the console command.
58 58
      *
59
+     * @param string $folder
59 60
      * @return mixed
60 61
      */
61 62
     public function midiaFinder($folder)
Please login to merge, or discard this patch.
src/Console/DatabaseBackupCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
      * Get the database connection.
86 86
      *
87 87
      * @param  string $name
88
-     * @return array|string
88
+     * @return boolean
89 89
      */
90 90
     protected function getConnection($name)
91 91
     {
Please login to merge, or discard this patch.
src/Console/External/Analyser/CodeAnalyser.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/TargetManager.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.
src/FinderProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@
 block discarded – undo
238 238
     /**
239 239
      * Get the services provided by the provider.
240 240
      *
241
-     * @return array
241
+     * @return string[]
242 242
      */
243 243
     public function provides()
244 244
     {
Please login to merge, or discard this patch.
src/Http/Actions/AuthCreateAction.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
     /**
23 23
      * AuthCreateAction constructor.
24 24
      *
25
-     * @param ResponseFactory $responseFactory
26 25
      * @param OAuthProxy      $oAuthProxy
27 26
      */
28 27
     public function __construct(OAuthProxy $oAuthProxy)
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.