Skip to content

Commit

Permalink
Merge pull request #82 from emchooo/analysis-yrDMMY
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
emchooo committed Jun 1, 2022
2 parents 19b012e + ddab616 commit eeea829
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/Console/Commands/MailnessInstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand All @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions app/Http/Controllers/ListsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand All @@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Campaign.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions tests/DuskTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ abstract class DuskTestCase extends BaseTestCase
* Prepare for Dusk test execution.
*
* @beforeClass
*
* @return void
*/
public static function prepare()
Expand Down

0 comments on commit eeea829

Please sign in to comment.