Skip to content

Commit

Permalink
chore(tests): update laravel version in tests workflow
Browse files Browse the repository at this point in the history
- Updated laravel version to 8.23.* in the tests workflow configuration
  • Loading branch information
guanguans committed May 8, 2024
1 parent d93de26 commit e3c2cee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
os: [ ubuntu-latest ]
php: [ 7.4, 8.3 ]
dependency-version: [ prefer-stable ]
laravel: [ 8.0.*, 9.*, 10.*, 11.* ]
laravel: [ 8.23.*, 9.*, 10.*, 11.* ]
include:
- laravel: 8.0.*
- laravel: 8.23.*
testbench: 6.*
- laravel: 9.*
testbench: 7.*
Expand All @@ -29,7 +29,7 @@ jobs:
- php: 7.4
laravel: 11.*
- php: 8.3
laravel: 8.0.*
laravel: 8.23.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
2 changes: 1 addition & 1 deletion src/Channels/MailChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function report(string $report): void
/** @var Mailer|PendingMail $mailerOrPendingMail */
$mailerOrPendingMail = collect($this->config->all())
->except(['driver', 'mailer', 'extender', 'pipes'])
->reduceWithKeys(
->reduce(
static function (object $mailerOrPendingMail, array $parameters, string $method): object {
$object = app()->call([$mailerOrPendingMail, Str::camel($method)], $parameters);

Expand Down

0 comments on commit e3c2cee

Please sign in to comment.