mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
chore: Deprecate unused ISystemTagManagerFactory, DI is enough
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
b15e294a6e
commit
c8ce13236e
1 changed files with 4 additions and 0 deletions
|
|
@ -16,6 +16,7 @@ use OCP\IServerContainer;
|
|||
* Factory interface for system tag managers
|
||||
*
|
||||
* @since 9.0.0
|
||||
* @deprecated 33.0.0 use Dependency Injection instead, or \OCP\Server::get
|
||||
*/
|
||||
interface ISystemTagManagerFactory {
|
||||
/**
|
||||
|
|
@ -23,6 +24,7 @@ interface ISystemTagManagerFactory {
|
|||
*
|
||||
* @param IServerContainer $serverContainer server container
|
||||
* @since 9.0.0
|
||||
* @deprecated 33.0.0
|
||||
*/
|
||||
public function __construct(IServerContainer $serverContainer);
|
||||
|
||||
|
|
@ -31,6 +33,7 @@ interface ISystemTagManagerFactory {
|
|||
*
|
||||
* @return ISystemTagManager
|
||||
* @since 9.0.0
|
||||
* @deprecated 33.0.0
|
||||
*/
|
||||
public function getManager(): ISystemTagManager;
|
||||
|
||||
|
|
@ -40,6 +43,7 @@ interface ISystemTagManagerFactory {
|
|||
*
|
||||
* @return ISystemTagObjectMapper
|
||||
* @since 9.0.0
|
||||
* @deprecated 33.0.0
|
||||
*/
|
||||
public function getObjectMapper(): ISystemTagObjectMapper;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue