Skip to content

Commit

Permalink
Testing workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
slavarazum committed Dec 9, 2023
1 parent 12c7c15 commit c80024c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
- laravel: 10.*
php: 8.0

services:
redis:
image: redis
ports:
- 6379:6379

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"nunomaduro/larastan": "^2.6",
"orchestra/testbench": "^7.22.1|^8.0",
"pestphp/pest": "^2.24",
"pestphp/pest-plugin-laravel": "^2.2.0",
"pestphp/pest-plugin-laravel": "^1.4.0|^2.2.0",
"pestphp/pest-plugin-watch": "^2.0.1",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/Storage/BroadcastEventHistoryRedisStream.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class BroadcastEventHistoryRedisStream implements BroadcastEventHistory
protected int $lifetime;

/** @var PhpRedisConnection|PredisConnection */
private \Illuminate\Redis\Connections\Connection $db;
private $db;

public function __construct(ConfigRepository $config)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Storage/PresenceChannelUsersRedisRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class PresenceChannelUsersRedisRepository implements PresenceChannelUsersReposit
use BroadcastingUserIdentifier;

/** @var PhpRedisConnection|PredisConnection */
private \Illuminate\Redis\Connections\Connection $db;
private $db;

public function __construct()
{
Expand Down

0 comments on commit c80024c

Please sign in to comment.