Skip to content

Commit ab3af27

Browse files
committed
fix psalm
1 parent fafb1fa commit ab3af27

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

β€Žpsalm.xml

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
<file name="tests/stubs/oca_circles_exceptions_federateditemexception.php" />
6666
<file name="tests/stubs/oca_circles_exceptions_federateditemnotfoundexception.php" />
6767
<file name="tests/stubs/oca_circles_ientity.php" />
68+
<file name="tests/stubs/oca_circles_ifederatedmodel.php" />
6869
<file name="tests/stubs/oca_circles_ifederateduser.php" />
6970
<file name="tests/stubs/oca_circles_iqueryprobe.php" />
7071
<file name="tests/stubs/oca_circles_model_circle.php" />
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
6+
/**
7+
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
8+
* SPDX-License-Identifier: AGPL-3.0-or-later
9+
*/
10+
11+
12+
namespace OCA\Circles;
13+
14+
use OCA\Circles\Model\Circle;
15+
16+
/**
17+
* Interface IFederatedUser
18+
*
19+
* @package OCA\Circles
20+
*/
21+
interface IFederatedModel {
22+
public function getInstance(): string {
23+
}
24+
public function isLocal(): bool{
25+
}
26+
}

0 commit comments

Comments
Β (0)