diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2023-10-24 12:12:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-24 12:12:36 +0200 |
commit | 7a55ea78232b586c05b3211169e31bfac5c84797 (patch) | |
tree | 9266ca6d4993a6c7a0270794c8f70bbf4b020ed8 /core | |
parent | 122e799ff567e6e3b295ad9e475bc62b5cfbbe59 (diff) | |
parent | 3a265cee302e390da0f42f953040b22f667d109d (diff) | |
download | nextcloud-server-7a55ea78232b586c05b3211169e31bfac5c84797.tar.gz nextcloud-server-7a55ea78232b586c05b3211169e31bfac5c84797.zip |
Merge pull request #41061 from nextcloud/bugfix/noid/dont-use-indirect-dependency
fix(3rdparty): Don't use indirect dependency "Safe/" for functions
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; |