diff options
| author | winter | 2024-12-08 23:18:35 +0000 |
|---|---|---|
| committer | winter | 2024-12-08 23:18:35 +0000 |
| commit | bda28640d6e066ae338c6f31407df274ed09f026 (patch) | |
| tree | 2a887dd4f98f79fc11efefc9585c58e144f66a00 /WpfTest/Model/NotePrivacyInteractors.php | |
| parent | b00185ddbac9ac3de975a3954f2ede2f24458f6a (diff) | |
implement remote object fetching!
this is most of the tricky parts of inbound federation :3
Diffstat (limited to 'WpfTest/Model/NotePrivacyInteractors.php')
| -rw-r--r-- | WpfTest/Model/NotePrivacyInteractors.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/WpfTest/Model/NotePrivacyInteractors.php b/WpfTest/Model/NotePrivacyInteractors.php index ff4d7fa..917d90a 100644 --- a/WpfTest/Model/NotePrivacyInteractors.php +++ b/WpfTest/Model/NotePrivacyInteractors.php @@ -1,9 +1,9 @@ <?php namespace WpfTest\Model; -enum NotePrivacyInteractors { - case all; - case followers; - case mutuals; - case none; +enum NotePrivacyInteractors: string { + case ALL = 'all'; + case FOLLOWERS = 'followers'; + case MUTUALS = 'mutuals'; + case NONE = 'none'; }
\ No newline at end of file |
