mirror of
https://github.com/nextcloud/server.git
synced 2025-02-07 18:09:45 +00:00
dae7c159f7
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
19 lines
345 B
PHP
19 lines
345 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
namespace OCP\DB\QueryBuilder;
|
|
|
|
/**
|
|
* @since 8.2.0
|
|
*/
|
|
interface IQueryFunction {
|
|
/**
|
|
* @return string
|
|
* @since 8.2.0
|
|
*/
|
|
public function __toString();
|
|
}
|