1 2 3 4 5 6 7 8 9
<?php namespace WpfTest\Model; enum NotePrivacyInteractors: string { case ALL = 'all'; case FOLLOWERS = 'followers'; case MUTUALS = 'mutuals'; case NONE = 'none'; }