Skip to content

Commit 3d5e2fc

Browse files
Bump webpack from 5.74.0 to 5.76.1 (#1258)
* Bump webpack from 5.74.0 to 5.76.1 Bumps [webpack](https://github.com/webpack/webpack) from 5.74.0 to 5.76.1. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](webpack/webpack@v5.74.0...v5.76.1) --- updated-dependencies: - dependency-name: webpack dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * Apply fixes from StyleCI --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: StyleCI Bot <bot@styleci.io>
1 parent 85c5aa3 commit 3d5e2fc

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Notifications/LongWaitDetected.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function toMail($notifiable)
7777
->subject(config('app.name').': Long Queue Wait Detected')
7878
->greeting('Oh no! Something needs your attention.')
7979
->line(sprintf(
80-
'The "%s" queue on the "%s" connection has a wait time of %s seconds.',
80+
'The "%s" queue on the "%s" connection has a wait time of %s seconds.',
8181
$this->longWaitQueue, $this->longWaitConnection, $this->seconds
8282
));
8383
}
@@ -99,7 +99,7 @@ public function toSlack($notifiable)
9999
->attachment(function ($attachment) {
100100
$attachment->title('Long Wait Detected')
101101
->content(sprintf(
102-
'[%s] The "%s" queue on the "%s" connection has a wait time of %s seconds.',
102+
'[%s] The "%s" queue on the "%s" connection has a wait time of %s seconds.',
103103
config('app.name'), $this->longWaitQueue, $this->longWaitConnection, $this->seconds
104104
));
105105
});

tests/Feature/AuthTest.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ public function test_authentication_middleware_can_pass()
3131
$middleware = new Authenticate;
3232

3333
$response = $middleware->handle(
34-
new class
35-
{
34+
new class {
3635
},
3736
function ($value) {
3837
return 'response';
@@ -53,8 +52,7 @@ public function test_authentication_middleware_responds_with_403_on_failure()
5352
$middleware = new Authenticate;
5453

5554
$middleware->handle(
56-
new class
57-
{
55+
new class {
5856
},
5957
function ($value) {
6058
return 'response';

tests/Feature/SupervisorCommandTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ public function test_supervisor_command_can_start_paused_supervisors()
2727

2828
/**
2929
* @runInSeparateProcess
30+
*
3031
* @preserveGlobalState disabled
3132
*/
3233
public function test_supervisor_command_can_set_process_niceness()

0 commit comments

Comments
 (0)