@@ -47,6 +47,7 @@ |
||
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | 49 | * Tirardaqui |
| 50 | + * @param string $folder |
|
| 50 | 51 | */ |
| 51 | 52 | public function export($folder) |
| 52 | 53 | { |
@@ -56,6 +56,7 @@ |
||
| 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) |
@@ -85,7 +85,7 @@ |
||
| 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 | { |
@@ -314,7 +314,7 @@ |
||
| 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 | { |
@@ -40,6 +40,9 @@ |
||
| 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; |
@@ -238,7 +238,7 @@ |
||
| 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 | { |
@@ -22,7 +22,6 @@ |
||
| 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) |
@@ -215,7 +215,7 @@ |
||
| 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 | { |
@@ -61,6 +61,7 @@ discard block |
||
| 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 |
||
| 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, |