Fix the spelling of some verbs

This commit is contained in:
Michael 2023-02-20 08:54:27 +00:00
parent 11513519ce
commit 3b469fe4e9
2 changed files with 10 additions and 3 deletions

View file

@ -169,15 +169,21 @@ final class Activity
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-read
* @var string
*/
const READ = ActivityNamespace::ACTIVITY2 . 'read';
const READ = ActivityNamespace::ACTIVITY2 . 'Read';
/**
* Indicates that the actor has listened to the object.
*
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-listen
* @var string
*/
const LISTEN = ActivityNamespace::ACTIVITY2 . 'Listen';
/**
* Indicates that the actor has viewed the object.
*
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-view
* @var string
*/
const VIEW = ActivityNamespace::ACTIVITY2 . 'view';
const VIEW = ActivityNamespace::ACTIVITY2 . 'View';
const O_UNFOLLOW = ActivityNamespace::OSTATUS . '/unfollow';
const O_UNFAVOURITE = ActivityNamespace::OSTATUS . '/unfavorite';