File tree Expand file tree Collapse file tree 3 files changed +3
-10
lines changed Expand file tree Collapse file tree 3 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 1717 - 7.3
1818 - 7.2
1919 - 7.1
20+ - 7.0
2021 - 5.6
2122 - 5.5
2223 - 5.4
Original file line number Diff line number Diff line change 3333 "require-dev" : {
3434 "phpunit/phpunit" : " ^9.3 || ^5.7 || ^4.8.35"
3535 },
36- "suggest" : {
37- "react/event-loop" : " You need an event loop for this to make sense."
38- },
3936 "autoload" : {
4037 "files" : [
4138 " src/functions_include.php"
4239 ]
4340 },
4441 "autoload-dev" : {
4542 "psr-4" : { "React\\ Tests\\ Async\\ " : " tests/" }
46- },
47- "extra" : {
48- "branch-alias" : {
49- "dev-master" : " 1.0-dev"
50- }
5143 }
5244}
Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ public function testSeriesWithTasks()
2222 $ tasks = array (
2323 function () {
2424 return new Promise (function ($ resolve ) {
25- Loop::addTimer (0.05 , function () use ($ resolve ) {
25+ Loop::addTimer (0.051 , function () use ($ resolve ) {
2626 $ resolve ('foo ' );
2727 });
2828 });
2929 },
3030 function () {
3131 return new Promise (function ($ resolve ) {
32- Loop::addTimer (0.05 , function () use ($ resolve ) {
32+ Loop::addTimer (0.051 , function () use ($ resolve ) {
3333 $ resolve ('bar ' );
3434 });
3535 });
You can’t perform that action at this time.
0 commit comments