* @copyright 2010-2014 Justin Swanhart and André Rothe * @license http://www.debian.org/misc/bsd.license BSD License (3 Clause) * @version SVN: $Id$ * */ namespace PHPSQLParser\processors; /** * This class processes the REPLACE statements. * * @author André Rothe * @license http://www.debian.org/misc/bsd.license BSD License (3 Clause) * */ class ReplaceProcessor extends InsertProcessor { public function process($tokenList, $token_category = 'REPLACE') { return parent::process($tokenList, $token_category); } } ?>