Skip to content

Commit

Permalink
fix psalm
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtificialOwl committed Jan 24, 2025
1 parent fafb1fa commit ab3af27
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
<file name="tests/stubs/oca_circles_exceptions_federateditemexception.php" />
<file name="tests/stubs/oca_circles_exceptions_federateditemnotfoundexception.php" />
<file name="tests/stubs/oca_circles_ientity.php" />
<file name="tests/stubs/oca_circles_ifederatedmodel.php" />
<file name="tests/stubs/oca_circles_ifederateduser.php" />
<file name="tests/stubs/oca_circles_iqueryprobe.php" />
<file name="tests/stubs/oca_circles_model_circle.php" />
Expand Down
26 changes: 26 additions & 0 deletions tests/stubs/oca_circles_ifederatedmodel.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php

declare(strict_types=1);


/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/


namespace OCA\Circles;

use OCA\Circles\Model\Circle;

/**
* Interface IFederatedUser
*
* @package OCA\Circles
*/
interface IFederatedModel {
public function getInstance(): string {
}
public function isLocal(): bool{
}
}

0 comments on commit ab3af27

Please sign in to comment.