diff options
| author | winter | 2024-12-19 21:06:22 +0000 |
|---|---|---|
| committer | winter | 2024-12-19 21:06:22 +0000 |
| commit | 8c4b618b0fd61b82ecaac1c7040eec8dd8d26c94 (patch) | |
| tree | 7d52e429f319e046230ce8fb2d277a58b74d301d /Digitigrade/Model/Actor.php | |
| parent | 72b07245f44c73ed41bfcca2465a9ee34426a922 (diff) | |
can't have protected interface methods silly
Diffstat (limited to 'Digitigrade/Model/Actor.php')
| -rw-r--r-- | Digitigrade/Model/Actor.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Digitigrade/Model/Actor.php b/Digitigrade/Model/Actor.php index fa08463..799f8c8 100644 --- a/Digitigrade/Model/Actor.php +++ b/Digitigrade/Model/Actor.php @@ -96,7 +96,7 @@ class Actor extends PushableModel implements RpcReceiver { return self::findByUri($uri); } - protected function rpcCall(string $method, array $args) { + public function rpcCall(string $method, array $args) { switch ($method) { case 'follow': // $this is the target, $args[0] is the initiator $status = $this->requestToFollow ? FollowRelationStatus::PENDING : FollowRelationStatus::ACTIVE; |
