Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/laminas/laminas-config/src/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-config/src/StandaloneWriterPluginManager.php

<?php

namespace Laminas\Config;

use Psr\Container\ContainerInterface;

use function array_keys;
use function array_values;
use function class_exists;
use function in_array;
use function sprintf;
use function strtolower;

class StandaloneWriterPluginManager implements ContainerInterface
{
    /** @var array<string, class-string> */
    private $knownPlugins = [
        'ini'            => Writer\Ini::class,
        'javaproperties' => Writer\JavaProperties::class,
        'json'           => Writer\Json::class,
        'php'            => Writer\PhpArray::class,
        'phparray'       => Writer\PhpArray::class,
        'xml'            => Writer\Xml::class,
        'yaml'           => Writer\Yaml::class,
    ];

    /**
     * @param string $plugin
     * @return bool
     */
    public function has($plugin)
    {
        if (in_array($plugin, array_values($this->knownPlugins), true)) {
            return true;
        }

        return in_array(strtolower($plugin), array_keys($this->knownPlugins), true);
    }

    /**
     * @param string $plugin
     * @return Reader\ReaderInterface
     * @throws Exception\PluginNotFoundException
     */
    public function get($plugin)
    {
        if (! $this->has($plugin)) {
            throw new Exception\PluginNotFoundException(sprintf(
                'Config writer plugin by name %s not found',
                $plugin
            ));
        }

        if (! class_exists($plugin)) {
            $plugin = $this->knownPlugins[strtolower($plugin)];
        }

        return new $plugin();
    }
}