diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 297ab381..25392507 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: [7.2, 7.3, 7.4] + php-version: [7.2, 7.3, 7.4, 8.0] laravel-version: [6, 7, 8] @@ -45,12 +45,6 @@ jobs: dependencies: locked experimental: false - # - php-version: 8.0 - # laravel-version: 7 - # dependencies: highest - # os: ubuntu-latest - # experimental: true - name: PHP ${{ matrix.php-version }} - L${{ matrix.laravel-version }} - ${{ matrix.os }} runs-on: ${{ matrix.os }} diff --git a/src/Models/Statements/SendStatement.php b/src/Models/Statements/SendStatement.php index 8e72ada5..29cb9a7b 100644 --- a/src/Models/Statements/SendStatement.php +++ b/src/Models/Statements/SendStatement.php @@ -29,7 +29,7 @@ class SendStatement */ private $type; - public function __construct(string $mail, string $to = null, array $data = [], string $type) + public function __construct(string $mail, string $to = null, array $data, string $type) { $this->mail = $mail; $this->data = $data;