2015-11-24 01:53:55 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace OCP\Comments;
|
|
|
|
|
|
|
|
/**
|
2015-12-04 12:57:31 +03:00
|
|
|
* Interface ICommentsManagerFactory
|
2015-11-24 01:53:55 +03:00
|
|
|
*
|
2015-12-04 12:57:31 +03:00
|
|
|
* This class is responsible for instantiating and returning an ICommentsManager
|
|
|
|
* instance.
|
2015-11-24 01:53:55 +03:00
|
|
|
*
|
|
|
|
* @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();
|
|
|
|
}
|