aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2023-10-11 10:44:13 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2023-10-11 10:44:13 +0200
commitd0fb60891d64de945e2189ac056e758f2ca8c133 (patch)
treec2451bd2eed62befc7228adbd7ee119add5e038b /lib
parentc1452aa6bd615a4f82b010f48e0a7e4ea3ac012c (diff)
downloadnextcloud-server-d0fb60891d64de945e2189ac056e758f2ca8c133.tar.gz
nextcloud-server-d0fb60891d64de945e2189ac056e758f2ca8c133.zip
fix(api): set the correct version in since annotation
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/public/Log/BeforeMessageLoggedEvent.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/public/Log/BeforeMessageLoggedEvent.php b/lib/public/Log/BeforeMessageLoggedEvent.php
index 42e57f09964..859ce6ec550 100644
--- a/lib/public/Log/BeforeMessageLoggedEvent.php
+++ b/lib/public/Log/BeforeMessageLoggedEvent.php
@@ -28,7 +28,7 @@ use OCP\EventDispatcher\Event;
/**
* Even for when a log item is being logged
*
- * @since 26.0.7
+ * @since 26.0.8
*/
class BeforeMessageLoggedEvent extends Event {
private int $level;
@@ -36,7 +36,7 @@ class BeforeMessageLoggedEvent extends Event {
private $message;
/**
- * @since 28.0.0
+ * @since 26.0.8
*/
public function __construct(string $app, int $level, $message) {
$this->level = $level;
@@ -48,7 +48,7 @@ class BeforeMessageLoggedEvent extends Event {
* Get the level of the log item
*
* @return int
- * @since 28.0.0
+ * @since 26.0.8
*/
public function getLevel(): int {
return $this->level;
@@ -59,7 +59,7 @@ class BeforeMessageLoggedEvent extends Event {
* Get the app context of the log item
*
* @return string
- * @since 28.0.0
+ * @since 26.0.8
*/
public function getApp(): string {
return $this->app;
@@ -70,7 +70,7 @@ class BeforeMessageLoggedEvent extends Event {
* Get the message of the log item
*
* @return string
- * @since 28.0.0
+ * @since 26.0.8
*/
public function getMessage(): string {
return $this->message;