Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
die_coolen_jungs
our_own_cloud_project
Commits
75ee5a9e
Commit
75ee5a9e
authored
Jan 22, 2016
by
Morris Jobke
Browse files
Fix PHPDoc - @changed is no official tag -> use @since
parent
766ba1cd
Changes
5
Hide whitespace changes
Inline
Side-by-side
lib/private/notification/inotification.php
View file @
75ee5a9e
...
...
@@ -79,8 +79,7 @@ interface INotification {
* @param string $id
* @return $this
* @throws \InvalidArgumentException if the object type or id is invalid
* @since 8.2.0
* @changed 9.0.0 Type of $id changed to string
* @since 8.2.0 - 9.0.0: Type of $id changed to string
*/
public
function
setObject
(
$type
,
$id
);
...
...
@@ -92,8 +91,7 @@ interface INotification {
/**
* @return string
* @since 8.2.0
* @changed 9.0.0 Return type changed to string
* @since 8.2.0 - 9.0.0: Return type changed to string
*/
public
function
getObjectId
();
...
...
lib/private/notification/notification.php
View file @
75ee5a9e
...
...
@@ -167,8 +167,7 @@ class Notification implements INotification {
* @param string $id
* @return $this
* @throws \InvalidArgumentException if the object type or id is invalid
* @since 8.2.0
* @changed 9.0.0 Type of $id changed to string
* @since 8.2.0 - 9.0.0: Type of $id changed to string
*/
public
function
setObject
(
$type
,
$id
)
{
if
(
!
is_string
(
$type
)
||
$type
===
''
||
isset
(
$type
[
64
]))
{
...
...
@@ -193,8 +192,7 @@ class Notification implements INotification {
/**
* @return string
* @since 8.2.0
* @changed 9.0.0 Return type changed to string
* @since 8.2.0 - 9.0.0: Return type changed to string
*/
public
function
getObjectId
()
{
return
$this
->
objectId
;
...
...
lib/public/activity/iextension.php
View file @
75ee5a9e
...
...
@@ -57,8 +57,7 @@ interface IExtension {
* 'desc' => "translated string description for the setting"
* 'methods' => [self::METHOD_*],
* ]
* @since 8.0.0
* @changed 8.2.0 - Added support to allow limiting notifications to certain methods
* @since 8.0.0 - 8.2.0: Added support to allow limiting notifications to certain methods
*/
public
function
getNotificationTypes
(
$languageCode
);
...
...
lib/public/activity/imanager.php
View file @
75ee5a9e
...
...
@@ -118,8 +118,7 @@ interface IManager {
* 'desc' => "translated string description for the setting"
* 'methods' => [\OCP\Activity\IExtension::METHOD_*],
* ]
* @since 8.0.0
* @changed 8.2.0 - Added support to allow limiting notifications to certain methods
* @since 8.0.0 - 8.2.0: Added support to allow limiting notifications to certain methods
*/
public
function
getNotificationTypes
(
$languageCode
);
...
...
lib/public/files/storagenotavailableexception.php
View file @
75ee5a9e
...
...
@@ -34,8 +34,7 @@ use OC\HintException;
/**
* Storage is temporarily not available
* @since 6.0.0
* @changed 8.2.1 based on HintException
* @since 6.0.0 - since 8.2.1 based on HintException
*/
class
StorageNotAvailableException
extends
HintException
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment