@@ -120,9 +120,10 @@ |
||
120 | 120 | } |
121 | 121 | |
122 | 122 | /** |
123 | - * @param $name |
|
124 | - * @param $user |
|
125 | - * @param $password |
|
123 | + * @param string $name |
|
124 | + * @param string $user |
|
125 | + * @param string $password |
|
126 | + * @param string $host |
|
126 | 127 | */ |
127 | 128 | protected function setLaravelConfiguration($name, $user, $password, $host) |
128 | 129 | { |
@@ -39,8 +39,8 @@ |
||
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | - * @param $driver |
|
43 | - * @param $command |
|
42 | + * @param string $driver |
|
43 | + * @param Command $command |
|
44 | 44 | * @return mixed |
45 | 45 | */ |
46 | 46 | protected function configure($driver, $command) |
@@ -2,6 +2,10 @@ |
||
2 | 2 | |
3 | 3 | trait BlockMessage |
4 | 4 | { |
5 | + /** |
|
6 | + * @param string $title |
|
7 | + * @param string $message |
|
8 | + */ |
|
5 | 9 | public function blockMessage($title, $message, $style = 'info') |
6 | 10 | { |
7 | 11 | $formatter = $this->getHelperSet()->get('formatter'); |
@@ -80,7 +80,7 @@ |
||
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
83 | - * @param $name |
|
83 | + * @param string $name |
|
84 | 84 | * @return mixed |
85 | 85 | */ |
86 | 86 | public function getRawField($name) |
@@ -160,7 +160,7 @@ |
||
160 | 160 | /** |
161 | 161 | * Return the position in the array of the given key |
162 | 162 | * |
163 | - * @param $dependency |
|
163 | + * @param string $dependency |
|
164 | 164 | * @param array $dependencyArray |
165 | 165 | * @return int |
166 | 166 | */ |
@@ -228,7 +228,7 @@ |
||
228 | 228 | |
229 | 229 | /** |
230 | 230 | * @param $file |
231 | - * @param $package |
|
231 | + * @param string $package |
|
232 | 232 | * @return string |
233 | 233 | */ |
234 | 234 | private function getConfigFilename($file, $package) |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Return a collection of all elements of the resource |
17 | - * @return mixed |
|
17 | + * @return \Illuminate\Database\Eloquent\Collection |
|
18 | 18 | */ |
19 | 19 | public function all(); |
20 | 20 | |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | /** |
44 | 44 | * Return resources translated in the given language |
45 | - * @param $lang |
|
45 | + * @param string $lang |
|
46 | 46 | * @return object |
47 | 47 | */ |
48 | 48 | public function allTranslatedIn($lang); |
@@ -50,7 +50,7 @@ |
||
50 | 50 | |
51 | 51 | /** |
52 | 52 | * @param mixed $data |
53 | - * @return object |
|
53 | + * @return \Illuminate\Database\Eloquent\Model |
|
54 | 54 | */ |
55 | 55 | public function create($data) |
56 | 56 | { |
@@ -193,7 +193,7 @@ |
||
193 | 193 | |
194 | 194 | /** |
195 | 195 | * Clear the cache for this Repositories' Entity |
196 | - * @return bool |
|
196 | + * @return boolean|null |
|
197 | 197 | */ |
198 | 198 | public function clearCache() |
199 | 199 | { |