From d6c4cefb44be07da188e07f25e813eb2ef0bac76 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 28 Apr 2022 23:42:58 +0000 Subject: [PATCH 1/2] Bump async from 2.6.3 to 2.6.4 Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- yarn.lock | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index b7b68d3..5ff8dc1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1381,9 +1381,9 @@ "dev": true }, "async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "dev": true, "requires": { "lodash": "^4.17.14" diff --git a/yarn.lock b/yarn.lock index 6f7a759..ed1cdc9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1252,9 +1252,9 @@ async-limiter@~1.0.0: integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== async@^2.4.1, async@^2.6.2: - version "2.6.3" - resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" - integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== + version "2.6.4" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221" + integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA== dependencies: lodash "^4.17.14" @@ -4199,9 +4199,9 @@ lodash.uniq@^4.5.0: integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.5: - version "4.17.19" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" - integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== loglevel@^1.6.8: version "1.6.8" From f2220790ba24e18e263be1b9d59d6b2b769dfb16 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Thu, 28 Apr 2022 23:43:05 +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()