diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-05-30 14:44:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 14:44:20 +0200 |
commit | 0963336fb1565fe8b7c496fccda5c74c06f863a5 (patch) | |
tree | 84808c8a8909e7e56196badd28aa5613ace40ac9 /lib | |
parent | 99af78cd66cb489b52f985e9a5b7d165b60b0e82 (diff) | |
download | nextcloud-server-0963336fb1565fe8b7c496fccda5c74c06f863a5.tar.gz nextcloud-server-0963336fb1565fe8b7c496fccda5c74c06f863a5.zip |
chore: fix missing semi-colon in refactor
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/Util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Util.php b/lib/public/Util.php index 7e9ddb6788b..20b4fe9c20d 100644 --- a/lib/public/Util.php +++ b/lib/public/Util.php @@ -16,7 +16,7 @@ use OC\AppScriptSort; use OCP\L10N\IFactory; use OCP\Share\IManager; use Psr\Container\ContainerExceptionInterface; -use Psr\Log\LoggerInterface +use Psr\Log\LoggerInterface; /** * This class provides different helper functions to make the life of a developer easier |