diff --git a/app/Console/Commands/MailnessInstallCommand.php b/app/Console/Commands/MailnessInstallCommand.php index f8831a9..97cd717 100644 --- a/app/Console/Commands/MailnessInstallCommand.php +++ b/app/Console/Commands/MailnessInstallCommand.php @@ -54,7 +54,7 @@ public function handle() /** * Update the .env file from an array of $key => $value pairs. * - * @param array $updatedValues + * @param array $updatedValues * @return void */ protected function updateEnvironmentFile($updatedValues) @@ -114,7 +114,7 @@ protected function createEnvFile() /** * Migrate the db with the new credentials. * - * @param array $credentials + * @param array $credentials * @return void */ protected function migrateDatabaseWithFreshCredentials($credentials) @@ -134,7 +134,7 @@ protected function migrateDatabaseWithFreshCredentials($credentials) * Prompt the user for optional input but hide the answer from the console. * * @param string $question - * @param bool $fallback + * @param bool $fallback * @return string */ public function askHiddenWithDefault($question, $fallback = true) diff --git a/app/Http/Controllers/ListsController.php b/app/Http/Controllers/ListsController.php index 0b9b051..c8d1f8f 100644 --- a/app/Http/Controllers/ListsController.php +++ b/app/Http/Controllers/ListsController.php @@ -132,7 +132,7 @@ public function destroy(Lists $lists) /** * Subscribe form. * - * @param \App\Models\Lists $lists + * @param \App\Models\Lists $lists */ public function subscribe(Lists $list) { @@ -143,7 +143,7 @@ public function subscribe(Lists $list) * Save subscribe. * * @param \Illuminate\Http\Request $request - * @param \App\Models\Lists $lists + * @param \App\Models\Lists $lists */ public function subscribeStore(StoreSubscriptionRequest $request, Lists $list) { diff --git a/app/Models/Campaign.php b/app/Models/Campaign.php index d9a2ab4..6f441e1 100644 --- a/app/Models/Campaign.php +++ b/app/Models/Campaign.php @@ -15,7 +15,7 @@ class Campaign extends Model /** * Checks if Current Campaign status is as Specified. * - * @param string $status + * @param string $status * @return bool **/ public function isInStatus(string $status): bool diff --git a/tests/DuskTestCase.php b/tests/DuskTestCase.php index b1dd1bc..52c66c1 100644 --- a/tests/DuskTestCase.php +++ b/tests/DuskTestCase.php @@ -15,6 +15,7 @@ abstract class DuskTestCase extends BaseTestCase * Prepare for Dusk test execution. * * @beforeClass + * * @return void */ public static function prepare()