File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 4
4
5
5
interface LoopInterface
6
6
{
7
- public function addReadStream ($ stream , $ listener );
8
- public function addWriteStream ($ stream , $ listener );
7
+ function addReadStream ($ stream , $ listener );
8
+ function addWriteStream ($ stream , $ listener );
9
9
10
- public function removeReadStream ($ stream );
11
- public function removeWriteStream ($ stream );
12
- public function removeStream ($ stream );
10
+ function removeReadStream ($ stream );
11
+ function removeWriteStream ($ stream );
12
+ function removeStream ($ stream );
13
13
14
- public function addTimer ($ interval , $ callback );
15
- public function addPeriodicTimer ($ interval , $ callback );
16
- public function cancelTimer ($ signature );
14
+ function addTimer ($ interval , $ callback );
15
+ function addPeriodicTimer ($ interval , $ callback );
16
+ function cancelTimer ($ signature );
17
17
18
- public function tick ();
19
- public function run ();
20
- public function stop ();
18
+ function tick ();
19
+ function run ();
20
+ function stop ();
21
21
}
You can’t perform that action at this time.
0 commit comments