diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-20 11:45:08 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-20 11:45:08 +0100 |
commit | f5c361cf44739058b79f322576a1bad2d8c142d9 (patch) | |
tree | a22217c6995751023112832d191d213e494e2fbc /lib/public/EventDispatcher | |
parent | 37bb33c5799b834dfef3fb73936bd0e5a4773fb8 (diff) | |
download | nextcloud-server-f5c361cf44739058b79f322576a1bad2d8c142d9.tar.gz nextcloud-server-f5c361cf44739058b79f322576a1bad2d8c142d9.zip |
composer run cs:fix
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/public/EventDispatcher')
-rw-r--r-- | lib/public/EventDispatcher/ABroadcastedEvent.php | 1 | ||||
-rw-r--r-- | lib/public/EventDispatcher/Event.php | 1 | ||||
-rw-r--r-- | lib/public/EventDispatcher/IEventDispatcher.php | 1 | ||||
-rw-r--r-- | lib/public/EventDispatcher/IEventListener.php | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/lib/public/EventDispatcher/ABroadcastedEvent.php b/lib/public/EventDispatcher/ABroadcastedEvent.php index 3e41d316b9c..aa18ce94498 100644 --- a/lib/public/EventDispatcher/ABroadcastedEvent.php +++ b/lib/public/EventDispatcher/ABroadcastedEvent.php @@ -31,7 +31,6 @@ use JsonSerializable; * @since 18.0.0 */ abstract class ABroadcastedEvent extends Event implements JsonSerializable { - /** * @since 18.0.0 */ diff --git a/lib/public/EventDispatcher/Event.php b/lib/public/EventDispatcher/Event.php index 92f18a4fa43..94104300a09 100644 --- a/lib/public/EventDispatcher/Event.php +++ b/lib/public/EventDispatcher/Event.php @@ -41,7 +41,6 @@ use Psr\EventDispatcher\StoppableEventInterface; * @since 17.0.0 */ class Event implements StoppableEventInterface { - /** * @var bool * diff --git a/lib/public/EventDispatcher/IEventDispatcher.php b/lib/public/EventDispatcher/IEventDispatcher.php index 82505b6a512..0a96fa799d4 100644 --- a/lib/public/EventDispatcher/IEventDispatcher.php +++ b/lib/public/EventDispatcher/IEventDispatcher.php @@ -32,7 +32,6 @@ namespace OCP\EventDispatcher; * @since 17.0.0 */ interface IEventDispatcher { - /** * @template T of \OCP\EventDispatcher\Event * @param string $eventName preferably the fully-qualified class name of the Event sub class diff --git a/lib/public/EventDispatcher/IEventListener.php b/lib/public/EventDispatcher/IEventListener.php index 638e0570ca0..829a8769be2 100644 --- a/lib/public/EventDispatcher/IEventListener.php +++ b/lib/public/EventDispatcher/IEventListener.php @@ -31,7 +31,6 @@ namespace OCP\EventDispatcher; * @template T of Event */ interface IEventListener { - /** * @param Event $event * @psalm-param T $event |