phpmyadmin/libraries/classes/Plugins/AuthenticationPluginFactory.php
Maurício Meneghini Fauth 556594b4cd
Fix coding standard spacing issues
- Fixes one line doc comments
- Fixes parent call spacing
- Fixes constant spacing

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-02-24 21:06:17 -03:00

40 lines
1.0 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Plugins;
use PhpMyAdmin\Exceptions\AuthenticationPluginException;
use function __;
use function class_exists;
use function is_subclass_of;
use function strtolower;
use function ucfirst;
class AuthenticationPluginFactory
{
/** @var AuthenticationPlugin|null */
private $plugin = null;
/** @throws AuthenticationPluginException */
public function create(): AuthenticationPlugin
{
if ($this->plugin instanceof AuthenticationPlugin) {
return $this->plugin;
}
$authType = $GLOBALS['cfg']['Server']['auth_type'];
$class = 'PhpMyAdmin\\Plugins\\Auth\\Authentication' . ucfirst(strtolower($authType));
if (! class_exists($class) || ! is_subclass_of($class, AuthenticationPlugin::class)) {
throw new AuthenticationPluginException(
__('Invalid authentication method set in configuration:') . ' ' . $authType,
);
}
$this->plugin = new $class();
return $this->plugin;
}
}