@@ -37,7 +37,6 @@ |
||
37 | 37 | /** |
38 | 38 | * MailsAbstract constructor. |
39 | 39 | * |
40 | - * @param \Illuminate\Mail\Mailer $mail |
|
41 | 40 | */ |
42 | 41 | public function __construct() |
43 | 42 | { |
@@ -48,6 +48,7 @@ discard block |
||
48 | 48 | * By default Laravel takes (server/database/factories) as the |
49 | 49 | * path to the factories, this function changes the path to load |
50 | 50 | * the factories from the infrastructure directory. |
51 | + * @param string $customPath |
|
51 | 52 | */ |
52 | 53 | public function changeTheDefaultDatabaseModelsFactoriesPath($customPath) |
53 | 54 | { |
@@ -138,7 +139,7 @@ discard block |
||
138 | 139 | } |
139 | 140 | |
140 | 141 | /** |
141 | - * @param $directory |
|
142 | + * @param string $directory |
|
142 | 143 | */ |
143 | 144 | private function loadConfigs($directory) |
144 | 145 | { |
@@ -113,7 +113,7 @@ |
||
113 | 113 | /** |
114 | 114 | * @param \Symfony\Component\Finder\SplFileInfo $file |
115 | 115 | * |
116 | - * @return mixed |
|
116 | + * @return string |
|
117 | 117 | */ |
118 | 118 | private function getRouteFileNameWithoutExtension(SplFileInfo $file) |
119 | 119 | { |
@@ -32,13 +32,13 @@ |
||
32 | 32 | public $loggedInTestingUser; |
33 | 33 | |
34 | 34 | /** |
35 | - * @param $endpoint |
|
35 | + * @param string $endpoint |
|
36 | 36 | * @param string $verb |
37 | 37 | * @param array $data |
38 | 38 | * @param bool $protected |
39 | 39 | * @param array $headers |
40 | 40 | * |
41 | - * @return mixed |
|
41 | + * @return Response |
|
42 | 42 | * @throws \Symfony\Component\Debug\Exception\UndefinedMethodException |
43 | 43 | */ |
44 | 44 | public function apiCall($endpoint, $verb = 'get', array $data = [], $protected = true, array $headers = []) |