Skip to content

Commit 6e27723

Browse files
authored
fix: run CI on PR (#88)
* fix: run CI on PR * fix: php-cs-fixer Co-authored-by: Oliver Thébault <oliver.thebault@bedrockstreaming.com>
1 parent c6e2fec commit 6e27723

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Tests
22

3-
on: [push]
3+
on: [push, pull_request]
44

55
jobs:
66
tests:

src/Tests/Units/Client/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public function testHandleEventWithToSendLimit()
107107

108108
$event = new \Symfony\Contracts\EventDispatcher\Event();
109109

110-
$queue = new \SPLQueue();
110+
$queue = new \SplQueue();
111111

112112
$client->getMockController()->increment = function ($value) use ($queue) {
113113
$queue->enqueue($value);

0 commit comments

Comments
 (0)