Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump decode-uri-component from 0.2.0 to 0.2.2 #85

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply fixes from StyleCI
StyleCIBot committed Dec 4, 2022
commit d98ec269b5d004126b752d8936cf60e65ba5e232
6 changes: 3 additions & 3 deletions app/Console/Commands/MailnessInstallCommand.php
Original file line number Diff line number Diff line change
@@ -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)
4 changes: 2 additions & 2 deletions app/Http/Controllers/ListsController.php
Original file line number Diff line number Diff line change
@@ -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)
{
2 changes: 1 addition & 1 deletion app/Models/Campaign.php
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions tests/DuskTestCase.php
Original file line number Diff line number Diff line change
@@ -15,6 +15,7 @@ abstract class DuskTestCase extends BaseTestCase
* Prepare for Dusk test execution.
*
* @beforeClass
*
* @return void
*/
public static function prepare()