Skip to content

Commit 1e951a3

Browse files
committed
Added missing space after type cast thanks to @CharlotteDunois at #112 (comment) and #112 (comment)
1 parent 5780e09 commit 1e951a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ExtUvLoop.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public function addTimer($interval, $callback)
127127
$this->timers->attach($timer, $event);
128128
\uv_timer_start(
129129
$event,
130-
(int)($interval * 1000) + 1,
130+
(int) ($interval * 1000) + 1,
131131
0,
132132
$callback
133133
);
@@ -150,8 +150,8 @@ public function addPeriodicTimer($interval, $callback)
150150
$this->timers->attach($timer, $event);
151151
\uv_timer_start(
152152
$event,
153-
(int)($interval * 1000) + 1,
154-
(int)($interval * 1000) + 1,
153+
(int) ($interval * 1000) + 1,
154+
(int) ($interval * 1000) + 1,
155155
$callback
156156
);
157157

0 commit comments

Comments
 (0)