diff options
author | Joas Schilling <coding@schilljs.com> | 2021-04-09 12:50:02 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-04-09 12:51:57 +0200 |
commit | 99e53672089b09bc1ed7a7bb5c83f8a552a5aa5e (patch) | |
tree | 405e29a103f8a4e3fd04716656e956f53738db45 /lib/public | |
parent | ca939214bd8c7f481da7bda290f82508d6a5792a (diff) | |
download | nextcloud-server-99e53672089b09bc1ed7a7bb5c83f8a552a5aa5e.tar.gz nextcloud-server-99e53672089b09bc1ed7a7bb5c83f8a552a5aa5e.zip |
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; |