nextcloud/lib/public/comments/icommentsmanagerfactory.php

24 lines
408 B
PHP
Raw Normal View History

<?php
namespace OCP\Comments;
/**
2015-12-04 12:57:31 +03:00
* Interface ICommentsManagerFactory
*
2015-12-04 12:57:31 +03:00
* This class is responsible for instantiating and returning an ICommentsManager
* instance.
*
* @package OCP\Comments
* @since 9.0.0
*/
interface ICommentsManagerFactory {
/**
* creates and returns an instance of the ICommentsManager
*
* @return ICommentsManager
* @since 9.0.0
*/
public function getManager();
}