Skip to content

Commit b666aeb

Browse files
authored
Merge pull request #22 from traderinteractive/chadicus-patch-1
Add build for PHP 8.2
2 parents bc51aa2 + 9e36294 commit b666aeb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-18.04
11+
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
php-versions: ['7.3', '7.4', '8.0', '8.1']
14+
php-versions: ['7.3', '7.4', '8.0', '8.1', '8.2']
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v2

tests/Filter/StringsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public function __toString()
188188
public function filterWithObjectNoToStringMethod()
189189
{
190190
$this->expectException(\TraderInteractive\Exceptions\FilterException::class);
191-
$this->expectExceptionMessage("Value 'class@anonymous");
191+
$this->expectExceptionMessageMatches("/Value '\\\\?class\@anonymous/");
192192
$testObject = new class() {
193193
private $data;
194194

0 commit comments

Comments
 (0)