* @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 DESCRIBE statements. * * @author André Rothe * @license http://www.debian.org/misc/bsd.license BSD License (3 Clause) * */ class DescribeProcessor extends ExplainProcessor { protected function isStatement($keys, $needle = "DESCRIBE") { return parent::isStatement($keys, $needle); } } ?>