Commit ab3af27 1 parent fafb1fa commit ab3af27 Copy full SHA for ab3af27
File tree 2 files changed +27
-0
lines changed
2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 65
65
<file name =" tests/stubs/oca_circles_exceptions_federateditemexception.php" />
66
66
<file name =" tests/stubs/oca_circles_exceptions_federateditemnotfoundexception.php" />
67
67
<file name =" tests/stubs/oca_circles_ientity.php" />
68
+ <file name =" tests/stubs/oca_circles_ifederatedmodel.php" />
68
69
<file name =" tests/stubs/oca_circles_ifederateduser.php" />
69
70
<file name =" tests/stubs/oca_circles_iqueryprobe.php" />
70
71
<file name =" tests/stubs/oca_circles_model_circle.php" />
Original file line number Diff line number Diff line change
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
+ }
You canβt perform that action at this time.
0 commit comments