Skip to content

Commit 6465acb

Browse files
Updates for PHP 8 (#407)
1 parent e3da417 commit 6465acb

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
php-version: [7.2, 7.3, 7.4]
19+
php-version: [7.2, 7.3, 7.4, 8.0]
2020

2121
laravel-version: [6, 7, 8]
2222

@@ -45,12 +45,6 @@ jobs:
4545
dependencies: locked
4646
experimental: false
4747

48-
# - php-version: 8.0
49-
# laravel-version: 7
50-
# dependencies: highest
51-
# os: ubuntu-latest
52-
# experimental: true
53-
5448
name: PHP ${{ matrix.php-version }} - L${{ matrix.laravel-version }} - ${{ matrix.os }}
5549

5650
runs-on: ${{ matrix.os }}

src/Models/Statements/SendStatement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class SendStatement
2929
*/
3030
private $type;
3131

32-
public function __construct(string $mail, string $to = null, array $data = [], string $type)
32+
public function __construct(string $mail, string $to = null, array $data, string $type)
3333
{
3434
$this->mail = $mail;
3535
$this->data = $data;

0 commit comments

Comments
 (0)