diff options
-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; + } + } |