2023-06-22 11:41:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @copyright Carl Schwan <carl@carlschwan.eu>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0-or-later
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Epubreader\Utility;
|
|
|
|
|
|
|
|
use Psr\Container\ContainerExceptionInterface;
|
|
|
|
use Psr\Container\NotFoundExceptionInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class allowing to inject services into your application. You should
|
|
|
|
* use whenever possible dependency injections instead.
|
|
|
|
*
|
|
|
|
* ```php
|
|
|
|
* use OCP\Server;
|
|
|
|
*
|
|
|
|
* $tagManager = Server::get(ITagManager::class);
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* @since 25.0.0
|
|
|
|
*/
|
2023-08-02 20:04:03 +00:00
|
|
|
final class Server
|
|
|
|
{
|
2023-06-22 11:41:48 +00:00
|
|
|
/**
|
|
|
|
* @template T
|
|
|
|
* @param class-string<T>|string $serviceName
|
2023-08-02 20:04:03 +00:00
|
|
|
* @template S as class-string<T>|string
|
2023-06-22 11:41:48 +00:00
|
|
|
* @psalm-param S $serviceName
|
2023-08-02 20:04:03 +00:00
|
|
|
* @return (S is class-string<T> ? T : mixed)
|
2023-06-22 11:41:48 +00:00
|
|
|
* @throws ContainerExceptionInterface
|
|
|
|
* @throws NotFoundExceptionInterface
|
|
|
|
* @since 25.0.0
|
|
|
|
*/
|
2023-08-02 20:04:03 +00:00
|
|
|
public static function get(string $serviceName)
|
|
|
|
{
|
2023-06-22 11:41:48 +00:00
|
|
|
/** @psalm-suppress UndefinedClass */
|
|
|
|
return \OC::$server->get($serviceName);
|
|
|
|
}
|
|
|
|
}
|