Piwik\Updater\Migration\Db\DropTable::__construct PHP Метод

__construct() публичный Метод

public __construct ( string $table )
$table string Prefixed table name
    public function __construct($table)
    {
        $sql = sprintf('DROP TABLE IF EXISTS `%s`', $table);
        parent::__construct($sql, array(static::ERROR_CODE_TABLE_NOT_EXISTS, static::ERROR_CODE_UNKNOWN_TABLE));
    }
DropTable