> * @psalm-var array 1]; /** * The name of the truncated table. * * @var Expression|null */ public $table; /** * Special build method for truncate statement as Statement::build would return empty string. * * @return string */ public function build() { return 'TRUNCATE TABLE ' . $this->table . ';'; } }