tokenize( $code ); $code = ''; foreach ( $tokens as $token ) { $code .= $this->is_token_of_type( $token, T_FINAL ) ? '' : $this->token_to_string( $token ); } } return $code; } /** * Revert the hack to its initial state - nothing to do since finals can't be reverted. */ public function reset() { } }