diff --git a/src/Fenom/Tokenizer.php b/src/Fenom/Tokenizer.php index 6105a3f..12e773a 100644 --- a/src/Fenom/Tokenizer.php +++ b/src/Fenom/Tokenizer.php @@ -523,7 +523,7 @@ class Tokenizer */ public function skipIf($token1 /*, $token2, ...*/) { - if ($this->_valid(func_get_args(), $this->curr[0])) { + if ($this->curr && $this->_valid(func_get_args(), $this->curr[0])) { $this->next(); } return $this;