Renamed ConfigCustomizerPluginManager to CongigCustomizerManager

This commit is contained in:
Alejandro Celaya
2017-12-31 17:20:03 +01:00
parent 0f0213aa87
commit 5e3770c105
5 changed files with 10 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\CLI\Install;
use Shlinkio\Shlink\CLI\Install\Plugin\ConfigCustomizerInterface;
use Zend\ServiceManager\AbstractPluginManager;
class ConfigCustomizerManager extends AbstractPluginManager implements ConfigCustomizerManagerInterface
{
protected $instanceOf = ConfigCustomizerInterface::class;
}