diff options
Diffstat (limited to 'src/Components/Limit.php')
-rw-r--r-- | src/Components/Limit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Components/Limit.php b/src/Components/Limit.php index 17423e2..d02ce49 100644 --- a/src/Components/Limit.php +++ b/src/Components/Limit.php @@ -53,7 +53,7 @@ class Limit extends Component * * @return Limit */ - public static function parse(Parser $parser, TokensList $list, array $options = array()) + public static function parse(Parser $parser, TokensList $list, array $options = []) { $ret = new self(); @@ -121,7 +121,7 @@ class Limit extends Component * * @return string */ - public static function build($component, array $options = array()) + public static function build($component, array $options = []) { return $component->offset . ', ' . $component->rowCount; } |