diff options
author | Dan Ungureanu <udan1107@gmail.com> | 2015-06-24 19:53:09 +0300 |
---|---|---|
committer | Dan Ungureanu <udan1107@gmail.com> | 2015-06-24 19:53:09 +0300 |
commit | 8bd444e2f2bf04b01fb93c28bb67ac41560c0e01 (patch) | |
tree | f75c38a5c6460c54f613ed92f23580c5197a157f /src | |
parent | 0868a8636724cb3e1f961ff3246e4734a35e032c (diff) | |
download | sql-parser-8bd444e2f2bf04b01fb93c28bb67ac41560c0e01.zip sql-parser-8bd444e2f2bf04b01fb93c28bb67ac41560c0e01.tar.gz sql-parser-8bd444e2f2bf04b01fb93c28bb67ac41560c0e01.tar.bz2 |
Follow strict standards.
Diffstat (limited to 'src')
-rw-r--r-- | src/Fragment.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Fragment.php b/src/Fragment.php index 51cec95..1c40699 100644 --- a/src/Fragment.php +++ b/src/Fragment.php @@ -24,7 +24,9 @@ abstract class Fragment * * @return mixed */ - abstract public static function parse(Parser $parser, TokensList $list, - array $options = array() - ); + public static function parse(Parser $parser, TokensList $list, array $options = array()) + { + return null; + } + } |