diff options
author | Joas Schilling <coding@schilljs.com> | 2023-10-23 15:25:14 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-10-23 15:25:14 +0200 |
commit | 3a265cee302e390da0f42f953040b22f667d109d (patch) | |
tree | 1005dd12491d02cf643743186a52435b3aad76eb /core | |
parent | 834c9a209ebef7b8d5795b53a018577fe4e534ca (diff) | |
download | nextcloud-server-3a265cee302e390da0f42f953040b22f667d109d.tar.gz nextcloud-server-3a265cee302e390da0f42f953040b22f667d109d.zip |
fix(3rdparty): Don't use indirect dependency "Safe/" for functions
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/Db/ProfileConfig.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Db/ProfileConfig.php b/core/Db/ProfileConfig.php index b399874adf4..0cdf132ca96 100644 --- a/core/Db/ProfileConfig.php +++ b/core/Db/ProfileConfig.php @@ -26,8 +26,8 @@ declare(strict_types=1); namespace OC\Core\Db; -use function Safe\json_decode; -use function Safe\json_encode; +use function json_decode; +use function json_encode; use \JsonSerializable; use OCP\AppFramework\Db\Entity; use OCP\Profile\ParameterDoesNotExistException; |