Skip to content

Commit

Permalink
Added missing space after type cast thanks to @CharlotteDunois at rea…
Browse files Browse the repository at this point in the history
  • Loading branch information
WyriHaximus committed Jan 11, 2019
1 parent 5780e09 commit 1e951a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ExtUvLoop.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public function addTimer($interval, $callback)
$this->timers->attach($timer, $event);
\uv_timer_start(
$event,
(int)($interval * 1000) + 1,
(int) ($interval * 1000) + 1,
0,
$callback
);
Expand All @@ -150,8 +150,8 @@ public function addPeriodicTimer($interval, $callback)
$this->timers->attach($timer, $event);
\uv_timer_start(
$event,
(int)($interval * 1000) + 1,
(int)($interval * 1000) + 1,
(int) ($interval * 1000) + 1,
(int) ($interval * 1000) + 1,
$callback
);

Expand Down

0 comments on commit 1e951a3

Please sign in to comment.