diff --git a/framework/core/src/Event/ConfigureUserPreferences.php b/framework/core/src/Event/ConfigureUserPreferences.php deleted file mode 100644 index 27e986fe5..000000000 --- a/framework/core/src/Event/ConfigureUserPreferences.php +++ /dev/null @@ -1,23 +0,0 @@ -delete(); }); - - /** - * @deprecated beta 15, remove beta 16 - */ - static::$dispatcher->dispatch( - new ConfigureUserPreferences - ); } /** @@ -803,20 +795,6 @@ class User extends AbstractModel static::$hasher = $hasher; } - /** - * @deprecated beta 15, remove beta 16. Use `registerPreference` instead. - * - * Register a preference with a transformer and a default value. - * - * @param string $key - * @param callable $transformer - * @param mixed $default - */ - public static function addPreference($key, callable $transformer = null, $default = null) - { - return static::registerPreference($key, $transformer, $default); - } - /** * Register a preference with a transformer and a default value. *