File tree 3 files changed +3
-10
lines changed
3 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 17
17
- 7.3
18
18
- 7.2
19
19
- 7.1
20
+ - 7.0
20
21
- 5.6
21
22
- 5.5
22
23
- 5.4
Original file line number Diff line number Diff line change 33
33
"require-dev" : {
34
34
"phpunit/phpunit" : " ^9.3 || ^5.7 || ^4.8.35"
35
35
},
36
- "suggest" : {
37
- "react/event-loop" : " You need an event loop for this to make sense."
38
- },
39
36
"autoload" : {
40
37
"files" : [
41
38
" src/functions_include.php"
42
39
]
43
40
},
44
41
"autoload-dev" : {
45
42
"psr-4" : { "React\\ Tests\\ Async\\ " : " tests/" }
46
- },
47
- "extra" : {
48
- "branch-alias" : {
49
- "dev-master" : " 1.0-dev"
50
- }
51
43
}
52
44
}
Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ public function testSeriesWithTasks()
22
22
$ tasks = array (
23
23
function () {
24
24
return new Promise (function ($ resolve ) {
25
- Loop::addTimer (0.05 , function () use ($ resolve ) {
25
+ Loop::addTimer (0.051 , function () use ($ resolve ) {
26
26
$ resolve ('foo ' );
27
27
});
28
28
});
29
29
},
30
30
function () {
31
31
return new Promise (function ($ resolve ) {
32
- Loop::addTimer (0.05 , function () use ($ resolve ) {
32
+ Loop::addTimer (0.051 , function () use ($ resolve ) {
33
33
$ resolve ('bar ' );
34
34
});
35
35
});
You can’t perform that action at this time.
0 commit comments