@@ -54,9 +54,6 @@ function ($signal) {
5454 );
5555 }
5656
57- /**
58- * {@inheritdoc}
59- */
6057 public function addReadStream ($ stream , callable $ listener )
6158 {
6259 if (isset ($ this ->readEvents [(int ) $ stream ])) {
@@ -73,9 +70,6 @@ public function addReadStream($stream, callable $listener)
7370 $ this ->readEvents [(int ) $ stream ] = $ event ;
7471 }
7572
76- /**
77- * {@inheritdoc}
78- */
7973 public function addWriteStream ($ stream , callable $ listener )
8074 {
8175 if (isset ($ this ->writeEvents [(int ) $ stream ])) {
@@ -92,9 +86,6 @@ public function addWriteStream($stream, callable $listener)
9286 $ this ->writeEvents [(int ) $ stream ] = $ event ;
9387 }
9488
95- /**
96- * {@inheritdoc}
97- */
9889 public function removeReadStream ($ stream )
9990 {
10091 $ key = (int ) $ stream ;
@@ -105,9 +96,6 @@ public function removeReadStream($stream)
10596 }
10697 }
10798
108- /**
109- * {@inheritdoc}
110- */
11199 public function removeWriteStream ($ stream )
112100 {
113101 $ key = (int ) $ stream ;
@@ -118,9 +106,6 @@ public function removeWriteStream($stream)
118106 }
119107 }
120108
121- /**
122- * {@inheritdoc}
123- */
124109 public function addTimer ($ interval , callable $ callback )
125110 {
126111 $ timer = new Timer ( $ interval , $ callback , false );
@@ -140,9 +125,6 @@ public function addTimer($interval, callable $callback)
140125 return $ timer ;
141126 }
142127
143- /**
144- * {@inheritdoc}
145- */
146128 public function addPeriodicTimer ($ interval , callable $ callback )
147129 {
148130 $ timer = new Timer ($ interval , $ callback , true );
@@ -158,9 +140,6 @@ public function addPeriodicTimer($interval, callable $callback)
158140 return $ timer ;
159141 }
160142
161- /**
162- * {@inheritdoc}
163- */
164143 public function cancelTimer (TimerInterface $ timer )
165144 {
166145 if (isset ($ this ->timerEvents [$ timer ])) {
@@ -169,41 +148,26 @@ public function cancelTimer(TimerInterface $timer)
169148 }
170149 }
171150
172- /**
173- * {@inheritdoc}
174- */
175151 public function isTimerActive (TimerInterface $ timer )
176152 {
177153 return $ this ->timerEvents ->contains ($ timer );
178154 }
179155
180- /**
181- * {@inheritdoc}
182- */
183156 public function futureTick (callable $ listener )
184157 {
185158 $ this ->futureTickQueue ->add ($ listener );
186159 }
187160
188- /**
189- * {@inheritdoc}
190- */
191161 public function addSignal ($ signal , callable $ listener )
192162 {
193163 $ this ->signals ->add ($ signal , $ listener );
194164 }
195165
196- /**
197- * {@inheritdoc}
198- */
199166 public function removeSignal ($ signal , callable $ listener )
200167 {
201168 $ this ->signals ->remove ($ signal , $ listener );
202169 }
203170
204- /**
205- * {@inheritdoc}
206- */
207171 public function run ()
208172 {
209173 $ this ->running = true ;
@@ -222,9 +186,6 @@ public function run()
222186 }
223187 }
224188
225- /**
226- * {@inheritdoc}
227- */
228189 public function stop ()
229190 {
230191 $ this ->running = false ;
0 commit comments