Skip to content

Commit

Permalink
Add support of PHP 7.3 and less.
Browse files Browse the repository at this point in the history
  • Loading branch information
Henrich authored and Henrich committed Dec 4, 2020
1 parent 6ccee49 commit ba2b4fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ jobs:
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --prefer-dist --no-interaction --no-progress --no-suggest
npm install
- name: Run PHPUnit tests
run: vendor/bin/phpunit --testdox --colors=always
5 changes: 4 additions & 1 deletion src/TestBroadcaster.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@

class TestBroadcaster extends Broadcaster
{
private array $broadcasts = [];
/**
* @var array
*/
private $broadcasts = [];

/**
* {@inheritdoc}
Expand Down

0 comments on commit ba2b4fd

Please sign in to comment.