File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,13 @@ namespace OCA\Circles\Model\Probes {
9999 public function __construct() {}
100100 public function mustBeMember(bool $must = true): self {}
101101 }
102+ class DataProbe {
103+ public const OWNER = 'd';
104+ public const INITIATOR = 'h';
105+ public function __construct() {}
106+ public function add(string $key, array $path = []): self {}
107+ public function mustBeMember(bool $must = true): self {}
108+ }
102109}
103110
104111namespace OCA\Circles {
@@ -110,6 +117,8 @@ namespace OCA\Circles {
110117 public function startSession(?FederatedUser $federatedUser = null): void {}
111118 public function getCircles(?CircleProbe $probe = null): array {}
112119 public function getCircle(string $singleId, ?CircleProbe $probe = null): Circle {}
120+ public function probeCircles(?CircleProbe $circleProbe = null, ?DataProbe $dataProbe = null): array {}
121+ public function probeCircle(string $singleId, ?CircleProbe $probe = null, ?DataProbe $dataProbe = null): Circle {}
113122 public function getFederatedUser(string $federatedId, int $type = Member::TYPE_SINGLE): FederatedUser {}
114123 }
115124}
You can’t perform that action at this time.
0 commit comments