From 1519ba0e0f7cc9ab19b4180918f006c3ff7cc8cd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 4 Dec 2022 07:12:04 +0000 Subject: [PATCH 1/2] Bump decode-uri-component from 0.2.0 to 0.2.2 Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. - [Release notes](https://github.com/SamVerschueren/decode-uri-component/releases) - [Commits](https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.0...v0.2.2) --- updated-dependencies: - dependency-name: decode-uri-component dependency-type: indirect ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- yarn.lock | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index b7b68d3..dfd61a9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2882,9 +2882,9 @@ "dev": true }, "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "dev": true }, "deep-equal": { diff --git a/yarn.lock b/yarn.lock index 6f7a759..b221a67 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2323,9 +2323,9 @@ decamelize@^1.2.0: integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= + version "0.2.2" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" + integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== deep-equal@^1.0.1: version "1.1.1" From d98ec269b5d004126b752d8936cf60e65ba5e232 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Sun, 4 Dec 2022 07:12:14 +0000 Subject: [PATCH 2/2] Apply fixes from StyleCI --- app/Console/Commands/MailnessInstallCommand.php | 6 +++--- app/Http/Controllers/ListsController.php | 4 ++-- app/Models/Campaign.php | 2 +- tests/DuskTestCase.php | 1 + 4 files changed, 7 insertions(+), 6 deletions(-) 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()