Skip to content

Commit 82d80ee

Browse files
authored
Merge pull request #101 from cdosoftei/main
Full support for PHP 8.1: Update preg_split() default $limit argument
2 parents 762ba8c + 009f391 commit 82d80ee

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
php:
14+
- 8.1
1415
- 8.0
1516
- 7.4
1617
- 7.3

phpunit.xml.dist

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
66
bootstrap="vendor/autoload.php"
77
colors="true"
8-
cacheResult="false">
8+
cacheResult="false"
9+
convertDeprecationsToExceptions="true">
910
<testsuites>
1011
<testsuite name="Stdio React Test Suite">
1112
<directory>./tests/</directory>

src/Readline.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ public function strwidth($str)
938938
*/
939939
private function strsplit($str)
940940
{
941-
return preg_split('//u', $str, null, PREG_SPLIT_NO_EMPTY);
941+
return preg_split('//u', $str, -1, PREG_SPLIT_NO_EMPTY);
942942
}
943943

944944
/**

0 commit comments

Comments
 (0)