Skip to content

Commit 27ebd86

Browse files
style(sharereview): apply coding standards and Psalm fixes
Assisted-by: Claude Code:claude-sonnet-4-6 Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
1 parent 20dbe85 commit 27ebd86

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

tests/stub.phpstub

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -725,3 +725,15 @@ namespace OCA\NotifyPush\Queue {
725725
namespace OCA\Text\Event {
726726
class LoadEditor extends \OCP\EventDispatcher\Event {}
727727
}
728+
729+
namespace OCA\ShareReview\Sources {
730+
class SourceEvent extends \OCP\EventDispatcher\Event {
731+
abstract public function registerSource(string $source): void {}
732+
}
733+
734+
interface ISource {
735+
public function getName(): string;
736+
public function getShares(): array;
737+
public function deleteShare(string $shareId): bool;
738+
}
739+
}

0 commit comments

Comments
 (0)