Browse Source

fix(3rdparty): Don't use indirect dependency "Safe/" for functions

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v28.0.0beta1
Joas Schilling 7 months ago
parent
commit
3a265cee30
No account linked to committer's email address

+ 1
- 1
apps/dav/tests/integration/UserMigration/CalendarMigratorTest.php View File

@@ -26,7 +26,7 @@ declare(strict_types=1);

namespace OCA\DAV\Tests\integration\UserMigration;

use function Safe\scandir;
use function scandir;
use OCA\DAV\AppInfo\Application;
use OCA\DAV\UserMigration\CalendarMigrator;
use OCP\AppFramework\App;

+ 1
- 1
apps/dav/tests/integration/UserMigration/ContactsMigratorTest.php View File

@@ -26,7 +26,7 @@ declare(strict_types=1);

namespace OCA\DAV\Tests\integration\UserMigration;

use function Safe\scandir;
use function scandir;
use OCA\DAV\AppInfo\Application;
use OCA\DAV\UserMigration\ContactsMigrator;
use OCP\AppFramework\App;

+ 3
- 3
apps/dav/tests/unit/CalDAV/AppCalendar/AppCalendarTest.php View File

@@ -25,7 +25,7 @@ use OCP\Constants;
use PHPUnit\Framework\MockObject\MockObject;
use Test\TestCase;

use function Safe\rewind;
use function rewind;

class AppCalendarTest extends TestCase {
private $principal = 'principals/users/foo';
@@ -35,7 +35,7 @@ class AppCalendarTest extends TestCase {

private ICalendar|MockObject $calendar;
private ICalendar|MockObject $writeableCalendar;
protected function setUp(): void {
parent::setUp();

@@ -115,7 +115,7 @@ class AppCalendarTest extends TestCase {
'principal' => $this->principal,
'protected' => true,
];
// Check that the correct ACL is returned (default be only readable)
$this->assertEquals($expectedRO, $this->appCalendar->getACL());
$this->assertEquals($expectedRW, $this->writeableAppCalendar->getACL());

+ 2
- 2
core/Db/ProfileConfig.php View File

@@ -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;

+ 1
- 1
lib/private/Profile/Actions/FediverseAction.php View File

@@ -26,7 +26,7 @@ declare(strict_types=1);

namespace OC\Profile\Actions;

use function Safe\substr;
use function substr;
use OCP\Accounts\IAccountManager;
use OCP\IURLGenerator;
use OCP\IUser;

+ 1
- 1
lib/private/Profile/Actions/TwitterAction.php View File

@@ -26,7 +26,7 @@ declare(strict_types=1);

namespace OC\Profile\Actions;

use function Safe\substr;
use function substr;
use OCP\Accounts\IAccountManager;
use OCP\IURLGenerator;
use OCP\IUser;

Loading…
Cancel
Save