File tree Expand file tree Collapse file tree 8 files changed +8
-6
lines changed
Expand file tree Collapse file tree 8 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 11.php_cs.cache
22.phpunit.result.cache
3+ .php-cs-fixer.cache
34build
45coverage
56composer.lock
Original file line number Diff line number Diff line change 1717 "revolt/event-loop" : " ^0.2.4"
1818 },
1919 "require-dev" : {
20+ "friendsofphp/php-cs-fixer" : " ^3.0" ,
2021 "phpunit/phpunit" : " ^9.5.21" ,
2122 "psalm/phar" : " ^4.24"
2223 },
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public function createLoop(): LoopInterface
1313 $ this ->markTestSkipped ("ext-ev required " );
1414 }
1515
16- EventLoop::setDriver (new EventLoop \Driver \EvDriver );
16+ EventLoop::setDriver (new EventLoop \Driver \EvDriver () );
1717 return RevoltLoop::get ();
1818 }
1919}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public function createLoop(): LoopInterface
1313 $ this ->markTestSkipped ("ext-ev required " );
1414 }
1515
16- EventLoop::setDriver (new EventLoop \Driver \EvDriver );
16+ EventLoop::setDriver (new EventLoop \Driver \EvDriver () );
1717 return RevoltLoop::get ();
1818 }
1919}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public function createLoop(): LoopInterface
1313 $ this ->markTestSkipped ("ext-event required " );
1414 }
1515
16- EventLoop::setDriver (new EventLoop \Driver \EventDriver );
16+ EventLoop::setDriver (new EventLoop \Driver \EventDriver () );
1717 return EventLoop \Adapter \React \RevoltLoop::get ();
1818 }
1919}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public function createLoop(): LoopInterface
1313 $ this ->markTestSkipped ("ext-event required " );
1414 }
1515
16- EventLoop::setDriver (new EventLoop \Driver \EventDriver );
16+ EventLoop::setDriver (new EventLoop \Driver \EventDriver () );
1717 return RevoltLoop::get ();
1818 }
1919}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public function createLoop(): LoopInterface
1313 $ this ->markTestSkipped ("ext-uv required " );
1414 }
1515
16- EventLoop::setDriver (new EventLoop \Driver \UvDriver );
16+ EventLoop::setDriver (new EventLoop \Driver \UvDriver () );
1717 return RevoltLoop::get ();
1818 }
1919}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public function createLoop(): LoopInterface
1313 $ this ->markTestSkipped ("ext-uv required " );
1414 }
1515
16- EventLoop::setDriver (new EventLoop \Driver \UvDriver );
16+ EventLoop::setDriver (new EventLoop \Driver \UvDriver () );
1717 return RevoltLoop::get ();
1818 }
1919}
You can’t perform that action at this time.
0 commit comments