diff --git a/src/Authenticator/AuthenticatorCollection.php b/src/Authenticator/AuthenticatorCollection.php index 1796f87b..56f566c0 100644 --- a/src/Authenticator/AuthenticatorCollection.php +++ b/src/Authenticator/AuthenticatorCollection.php @@ -67,11 +67,6 @@ protected function _create(object|string $class, string $alias, array $config): if (is_string($class)) { if (!empty($config['identifier'])) { $this->_identifiers = new IdentifierCollection((array)$config['identifier']); - } else { - deprecationWarning( - '3.3.0', - 'loadIdentifier() usage is deprecated. Directly pass `\'identifier\'` config to the Authenticator.', - ); } return new $class($this->_identifiers, $config);