File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 20
20
*
21
21
* @link https://pecl.php.net/package/event
22
22
*/
23
- class ExtEventLoop implements LoopInterface
23
+ final class ExtEventLoop implements LoopInterface
24
24
{
25
25
private $ eventBase ;
26
26
private $ futureTickQueue ;
Original file line number Diff line number Diff line change 24
24
* @see https://github.com/m4rw3r/php-libev
25
25
* @see https://gist.github.com/1688204
26
26
*/
27
- class ExtLibevLoop implements LoopInterface
27
+ final class ExtLibevLoop implements LoopInterface
28
28
{
29
29
private $ loop ;
30
30
private $ futureTickQueue ;
Original file line number Diff line number Diff line change 33
33
*
34
34
* @link https://pecl.php.net/package/libevent
35
35
*/
36
- class ExtLibeventLoop implements LoopInterface
36
+ final class ExtLibeventLoop implements LoopInterface
37
37
{
38
38
/** @internal */
39
39
const MICROSECONDS_PER_SECOND = 1000000 ;
Original file line number Diff line number Diff line change 5
5
/**
6
6
* The `Factory` class exists as a convenient way to pick the best available event loop implementation.
7
7
*/
8
- class Factory
8
+ final class Factory
9
9
{
10
10
/**
11
11
* Creates a new event loop instance
Original file line number Diff line number Diff line change 50
50
*
51
51
* @link http://php.net/manual/en/function.stream-select.php
52
52
*/
53
- class StreamSelectLoop implements LoopInterface
53
+ final class StreamSelectLoop implements LoopInterface
54
54
{
55
55
/** @internal */
56
56
const MICROSECONDS_PER_SECOND = 1000000 ;
You can’t perform that action at this time.
0 commit comments