@@ -43,15 +43,14 @@ public static function get()
43
43
$ hasRun = true ;
44
44
});
45
45
46
- $ stopped =& self ::$ stopped ;
47
- register_shutdown_function (function () use ($ loop , &$ hasRun , &$ stopped ) {
46
+ register_shutdown_function (function () use ($ loop , &$ hasRun ) {
48
47
// Don't run if we're coming from a fatal error (uncaught exception).
49
48
$ error = error_get_last ();
50
- if ((isset ( $ error ['type ' ]) ? $ error [ ' type ' ] : 0 ) & (E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERROR )) {
49
+ if (($ error ['type ' ] ?? 0 ) & (E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERROR )) {
51
50
return ;
52
51
}
53
52
54
- if (!$ hasRun && !$ stopped ) {
53
+ if (!$ hasRun && !self :: $ stopped ) {
55
54
$ loop ->run ();
56
55
}
57
56
});
@@ -83,11 +82,7 @@ public static function set(LoopInterface $loop)
83
82
*/
84
83
public static function addReadStream ($ stream , $ listener )
85
84
{
86
- // create loop instance on demand (legacy PHP < 7 doesn't like ternaries in method calls)
87
- if (self ::$ instance === null ) {
88
- self ::get ();
89
- }
90
- self ::$ instance ->addReadStream ($ stream , $ listener );
85
+ (self ::$ instance ?? self ::get ())->addReadStream ($ stream , $ listener );
91
86
}
92
87
93
88
/**
@@ -101,11 +96,7 @@ public static function addReadStream($stream, $listener)
101
96
*/
102
97
public static function addWriteStream ($ stream , $ listener )
103
98
{
104
- // create loop instance on demand (legacy PHP < 7 doesn't like ternaries in method calls)
105
- if (self ::$ instance === null ) {
106
- self ::get ();
107
- }
108
- self ::$ instance ->addWriteStream ($ stream , $ listener );
99
+ (self ::$ instance ?? self ::get ())->addWriteStream ($ stream , $ listener );
109
100
}
110
101
111
102
/**
@@ -146,11 +137,7 @@ public static function removeWriteStream($stream)
146
137
*/
147
138
public static function addTimer ($ interval , $ callback )
148
139
{
149
- // create loop instance on demand (legacy PHP < 7 doesn't like ternaries in method calls)
150
- if (self ::$ instance === null ) {
151
- self ::get ();
152
- }
153
- return self ::$ instance ->addTimer ($ interval , $ callback );
140
+ return (self ::$ instance ?? self ::get ())->addTimer ($ interval , $ callback );
154
141
}
155
142
156
143
/**
@@ -163,11 +150,7 @@ public static function addTimer($interval, $callback)
163
150
*/
164
151
public static function addPeriodicTimer ($ interval , $ callback )
165
152
{
166
- // create loop instance on demand (legacy PHP < 7 doesn't like ternaries in method calls)
167
- if (self ::$ instance === null ) {
168
- self ::get ();
169
- }
170
- return self ::$ instance ->addPeriodicTimer ($ interval , $ callback );
153
+ return (self ::$ instance ?? self ::get ())->addPeriodicTimer ($ interval , $ callback );
171
154
}
172
155
173
156
/**
@@ -193,12 +176,7 @@ public static function cancelTimer(TimerInterface $timer)
193
176
*/
194
177
public static function futureTick ($ listener )
195
178
{
196
- // create loop instance on demand (legacy PHP < 7 doesn't like ternaries in method calls)
197
- if (self ::$ instance === null ) {
198
- self ::get ();
199
- }
200
-
201
- self ::$ instance ->futureTick ($ listener );
179
+ (self ::$ instance ?? self ::get ())->futureTick ($ listener );
202
180
}
203
181
204
182
/**
@@ -211,12 +189,7 @@ public static function futureTick($listener)
211
189
*/
212
190
public static function addSignal ($ signal , $ listener )
213
191
{
214
- // create loop instance on demand (legacy PHP < 7 doesn't like ternaries in method calls)
215
- if (self ::$ instance === null ) {
216
- self ::get ();
217
- }
218
-
219
- self ::$ instance ->addSignal ($ signal , $ listener );
192
+ (self ::$ instance ?? self ::get ())->addSignal ($ signal , $ listener );
220
193
}
221
194
222
195
/**
@@ -242,12 +215,7 @@ public static function removeSignal($signal, $listener)
242
215
*/
243
216
public static function run ()
244
217
{
245
- // create loop instance on demand (legacy PHP < 7 doesn't like ternaries in method calls)
246
- if (self ::$ instance === null ) {
247
- self ::get ();
248
- }
249
-
250
- self ::$ instance ->run ();
218
+ (self ::$ instance ?? self ::get ())->run ();
251
219
}
252
220
253
221
/**
0 commit comments