You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 2, 2022. It is now read-only.
For the settings endpoint the following methods are typically available:
This allows to create a command which takes a setting name as parameter can then use:
$method = sprintf('change_%s', $settingName)
However, an inconsistency prevents this to work with the 'always online' setting:
always_online($zone_identifier)
change_always_on($zone_identifier)
, I would expect this to be:change_always_online($zone_identifier)
Changing the name of this method to realize consistency would mean a BC-break. So an alias might be considered?
As far as I can see this is the only inconsistency. The following method seems missing:
change_email_obfuscation()
The text was updated successfully, but these errors were encountered: