Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-04-09 13:50:02 +0300
committerJoas Schilling <coding@schilljs.com>2021-04-09 13:51:57 +0300
commit99e53672089b09bc1ed7a7bb5c83f8a552a5aa5e (patch)
tree405e29a103f8a4e3fd04716656e956f53738db45 /lib/public
parentca939214bd8c7f481da7bda290f82508d6a5792a (diff)
Move to another namespace and class name
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/Log/Audit/CriticalActionPerformedEvent.php (renamed from lib/public/Log/AuditEvent.php)4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/Log/AuditEvent.php b/lib/public/Log/Audit/CriticalActionPerformedEvent.php
index 9041367be63..307696dff0b 100644
--- a/lib/public/Log/AuditEvent.php
+++ b/lib/public/Log/Audit/CriticalActionPerformedEvent.php
@@ -24,7 +24,7 @@ declare(strict_types=1);
*
*/
-namespace OCP\Log;
+namespace OCP\Log\Audit;
use OCP\EventDispatcher\Event;
@@ -33,7 +33,7 @@ use OCP\EventDispatcher\Event;
*
* @since 22.0.0
*/
-class AuditEvent extends Event {
+class CriticalActionPerformedEvent extends Event {
/** @var string */
private $logMessage;