* @license http://opensource.org/licenses/GPL-2.0 GNU Public License */ class TruncateStatement extends Statement { /** * Options for `TRUNCATE` statements. * * @var array */ public static $OPTIONS = array( 'TABLE' => 1, ); /** * The name of the truncated table. * * @var Expression */ public $table; }