* @since 6.0 * @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2 * @category Stud.IP */ interface UserFilterRange { /** * Check whether the given user can edit the given UserFilter object. * @param User $user * @param UserFilter $filter * @return bool */ public function canEditFilter(User $user, UserFilter $filter): bool; }