File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1414 - ubuntu-20.04
1515 - windows-2019
1616 php :
17+ - 8.0
1718 - 7.4
1819 - 7.3
1920 - 7.2
Original file line number Diff line number Diff line change @@ -573,7 +573,7 @@ $ composer require react/child-process:^0.6.1
573573See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
574574
575575This project aims to run on any platform and thus does not require any PHP
576- extensions and supports running on legacy PHP 5.3 through current PHP 7 + and HHVM.
576+ extensions and supports running on legacy PHP 5.3 through current PHP 8 + and HHVM.
577577It's * highly recommended to use PHP 7+* for this project.
578578
579579See above note for limited [ Windows Compatibility] ( #windows-compatibility ) .
Original file line number Diff line number Diff line change @@ -109,15 +109,15 @@ public function testStartWithExcessiveNumberOfFileDescriptorsWillThrow()
109109 $ this ->markTestSkipped ('Not supported on legacy HHVM ' );
110110 }
111111
112- $ ulimit = exec ('ulimit -n 2>&1 ' );
112+ $ ulimit = ( int ) exec ('ulimit -n 2>&1 ' );
113113 if ($ ulimit < 1 ) {
114114 $ this ->markTestSkipped ('Unable to determine limit of open files (ulimit not available?) ' );
115115 }
116116
117117 $ loop = $ this ->createLoop ();
118118
119119 // create 70% (usually ~700) dummy file handles in this parent dummy
120- $ limit = (int )($ ulimit * 0.7 );
120+ $ limit = (int ) ($ ulimit * 0.7 );
121121 $ fds = array ();
122122 for ($ i = 0 ; $ i < $ limit ; ++$ i ) {
123123 $ fds [$ i ] = fopen ('/dev/null ' , 'r ' );
You can’t perform that action at this time.
0 commit comments