0
0
mirror of https://github.com/nextcloud/server.git synced 2024-11-14 04:16:59 +00:00
nextcloud_server/lib/public/IBinaryFinder.php
Robin Appelman 103b464eea fix: use nc's binary finding logic for smb
Signed-off-by: Robin Appelman <robin@icewind.nl>
2024-10-04 15:56:31 +02:00

28 lines
533 B
PHP

<?php
declare(strict_types = 1);
/**
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP;
/**
* Service that find the binary path for a program.
*
* This interface should be injected via dependency injection and must
* not be implemented in applications.
*
* @since 25.0.0
*/
interface IBinaryFinder {
/**
* Try to find a program
*
* @return false|string
* @since 25.0.0
*/
public function findBinaryPath(string $program);
}