mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\Config;
|
|
|
|
use Zend\ServiceManager\AbstractPluginManager;
|
|
|
|
class WriterPluginManager extends AbstractPluginManager
|
|
{
|
|
protected $invokableClasses = array(
|
|
'ini' => 'Zend\Config\Writer\Ini',
|
|
'json' => 'Zend\Config\Writer\Json',
|
|
'php' => 'Zend\Config\Writer\PhpArray',
|
|
'yaml' => 'Zend\Config\Writer\Yaml',
|
|
'xml' => 'Zend\Config\Writer\Xml',
|
|
);
|
|
|
|
public function validatePlugin($plugin)
|
|
{
|
|
if ($plugin instanceof Writer\AbstractWriter) {
|
|
return;
|
|
}
|
|
|
|
$type = is_object($plugin) ? get_class($plugin) : gettype($plugin);
|
|
|
|
throw new Exception\InvalidArgumentException(
|
|
"Plugin of type {$type} is invalid. Plugin must extend ". __NAMESPACE__ . '\Writer\AbstractWriter'
|
|
);
|
|
}
|
|
}
|