nextcloud/lib/public/DB/QueryBuilder/IQueryFunction.php

20 lines
345 B
PHP
Raw Permalink Normal View History

<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
2015-07-07 11:30:26 -04:00
namespace OCP\DB\QueryBuilder;
2015-07-27 04:49:26 -04:00
/**
* @since 8.2.0
*/
2015-07-07 11:30:26 -04:00
interface IQueryFunction {
/**
* @return string
* @since 8.2.0
*/
2015-07-07 11:30:26 -04:00
public function __toString();
}