server/lib/public/comments/icommentsmanagerfactory.php
Arthur Schiwon f9081303b1 fix phpdoc
2015-12-09 14:34:23 +01:00

23 lines
408 B
PHP

<?php
namespace OCP\Comments;
/**
* Interface ICommentsManagerFactory
*
* 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();
}