Skip to content

Commit

Permalink
Fixed int type for PHP5
Browse files Browse the repository at this point in the history
  • Loading branch information
hhxsv5 authored Jul 26, 2018
1 parent 41f0c5f commit 3e06d69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SSE.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class SSE
{
public function start(Update $update, $eventType = null, int $milliRetry = 2000)
public function start(Update $update, $eventType = null, $milliRetry = 2000)
{
while (true) {
$changedData = $update->getUpdatedData();
Expand All @@ -31,4 +31,4 @@ public function start(Update $update, $eventType = null, int $milliRetry = 2000)
}
}

}
}

0 comments on commit 3e06d69

Please sign in to comment.