Jarves\Admin\AppKernelModifier::eat PHP Method

eat() public method

public eat ( $string ) : boolean
$string
return boolean
    public function eat($string)
    {
        if ($this->expect($string)) {
            $this->position += strlen($string);
            return true;
        }
        return false;
    }