Skip to content

Commit 7645aeb

Browse files
committed
Fix style issue.
1 parent 4cfc296 commit 7645aeb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Token.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -259,9 +259,9 @@ public function extract()
259259
} elseif (($this->flags & self::FLAG_NUMBER_APPROXIMATE)
260260
|| ($this->flags & self::FLAG_NUMBER_FLOAT)
261261
) {
262-
$ret = (float)$ret;
263-
} elseif (!($this->flags & self::FLAG_NUMBER_BINARY)) {
264-
$ret = (int)$ret;
262+
$ret = (float) $ret;
263+
} elseif (! ($this->flags & self::FLAG_NUMBER_BINARY)) {
264+
$ret = (int) $ret;
265265
}
266266

267267
return $ret;

0 commit comments

Comments
 (0)