File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -164,7 +164,8 @@ public function tick()
164
164
{
165
165
$ this ->nextTickQueue ->tick ();
166
166
167
- $ this ->eventBase ->loop (EventBase::LOOP_ONCE | EventBase::LOOP_NONBLOCK );
167
+ // @-suppression: https://github.com/reactphp/react/pull/234#discussion-diff-7759616R226
168
+ @$ this ->eventBase ->loop (EventBase::LOOP_ONCE | EventBase::LOOP_NONBLOCK );
168
169
}
169
170
170
171
/**
@@ -181,7 +182,8 @@ public function run()
181
182
break ;
182
183
}
183
184
184
- $ this ->eventBase ->loop (EventBase::LOOP_ONCE );
185
+ // @-suppression: https://github.com/reactphp/react/pull/234#discussion-diff-7759616R226
186
+ @$ this ->eventBase ->loop (EventBase::LOOP_ONCE );
185
187
}
186
188
}
187
189
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ public function isTimerActive(TimerInterface $timer);
91
91
* Callbacks are guaranteed to be executed in the order they are enqueued,
92
92
* before any timer or stream events.
93
93
*
94
- * @param callable $listner The callback to invoke.
94
+ * @param callable $listener The callback to invoke.
95
95
*/
96
96
public function nextTick (callable $ listener );
97
97
You can’t perform that action at this time.
0 commit comments