summaryrefslogtreecommitdiffstats
path: root/lib/private/Activity/Manager.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-11-16 09:29:27 +0100
committerJoas Schilling <coding@schilljs.com>2016-11-16 09:29:27 +0100
commit6b88d56e3aa94012dcaf9e5240b885b4e545efc6 (patch)
treeae829b3fd3e68f7a4573b82cbf46517d451b285e /lib/private/Activity/Manager.php
parent6047493b6dba2a402f256d2286008c3baaa3d5f9 (diff)
downloadnextcloud-server-6b88d56e3aa94012dcaf9e5240b885b4e545efc6.tar.gz
nextcloud-server-6b88d56e3aa94012dcaf9e5240b885b4e545efc6.zip
Update the since version to 11.0.0
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/Activity/Manager.php')
-rw-r--r--lib/private/Activity/Manager.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/private/Activity/Manager.php b/lib/private/Activity/Manager.php
index 9c1629d79c2..805124dc602 100644
--- a/lib/private/Activity/Manager.php
+++ b/lib/private/Activity/Manager.php
@@ -301,7 +301,7 @@ class Manager implements IManager {
* @param string $id
* @return IFilter
* @throws \InvalidArgumentException when the filter was not found
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getFilterById($id) {
$filters = $this->getFilters();
@@ -413,7 +413,7 @@ class Manager implements IManager {
* @param string $id
* @return ISetting
* @throws \InvalidArgumentException when the setting was not found
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getSettingById($id) {
$settings = $this->getSettings();
@@ -581,7 +581,7 @@ class Manager implements IManager {
/**
* @return array
- * @deprecated 9.2.0 - Use getFilters() instead
+ * @deprecated 11.0.0 - Use getFilters() instead
*/
public function getNavigation() {
$entries = array(
@@ -602,7 +602,7 @@ class Manager implements IManager {
/**
* @param string $filterValue
* @return boolean
- * @deprecated 9.2.0 - Use getFilterById() instead
+ * @deprecated 11.0.0 - Use getFilterById() instead
*/
public function isFilterValid($filterValue) {
if (isset($this->validFilters[$filterValue])) {
@@ -624,7 +624,7 @@ class Manager implements IManager {
* @param array $types
* @param string $filter
* @return array
- * @deprecated 9.2.0 - Use getFilterById()->filterTypes() instead
+ * @deprecated 11.0.0 - Use getFilterById()->filterTypes() instead
*/
public function filterNotificationTypes($types, $filter) {
if (!$this->isFilterValid($filter)) {
@@ -643,7 +643,7 @@ class Manager implements IManager {
/**
* @param string $filter
* @return array
- * @deprecated 9.2.0 - Use getFilterById() instead
+ * @deprecated 11.0.0 - Use getFilterById() instead
*/
public function getQueryForFilter($filter) {
if (!$this->isFilterValid($filter)) {
@@ -676,7 +676,7 @@ class Manager implements IManager {
*
* @param string $languageCode
* @return array
- * @deprecated 9.2.0 - Use getSettings() instead
+ * @deprecated 11.0.0 - Use getSettings() instead
*/
public function getNotificationTypes($languageCode) {
$notificationTypes = $sharingNotificationTypes = [];
@@ -698,7 +698,7 @@ class Manager implements IManager {
/**
* @param string $method
* @return array
- * @deprecated 9.2.0 - Use getSettings()->isDefaulEnabled<method>() instead
+ * @deprecated 11.0.0 - Use getSettings()->isDefaulEnabled<method>() instead
*/
public function getDefaultTypes($method) {
$defaultTypes = array();