summaryrefslogtreecommitdiffstats
path: root/lib/public/comments/icommentsmanagerfactory.php
blob: 6718dd39ba068672a87249c7d00a39404b538c3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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();
}