Removed plugin suffix on config ustomizers

This commit is contained in:
Alejandro Celaya
2017-12-31 17:18:54 +01:00
parent 0e2ad0dbca
commit 0f0213aa87
16 changed files with 35 additions and 35 deletions

View File

@@ -5,7 +5,7 @@ namespace Shlinkio\Shlink\CLI\Install\Plugin;
use Symfony\Component\Console\Style\SymfonyStyle;
abstract class AbstractConfigCustomizerPlugin implements ConfigCustomizerPluginInterface
abstract class AbstractConfigCustomizer implements ConfigCustomizerInterface
{
/**
* @param SymfonyStyle $io

View File

@@ -7,7 +7,7 @@ use Shlinkio\Shlink\CLI\Model\CustomizableAppConfig;
use Shlinkio\Shlink\Common\Util\StringUtilsTrait;
use Symfony\Component\Console\Style\SymfonyStyle;
class ApplicationConfigCustomizerPlugin extends AbstractConfigCustomizerPlugin
class ApplicationConfigCustomizer extends AbstractConfigCustomizer
{
use StringUtilsTrait;

View File

@@ -6,7 +6,7 @@ namespace Shlinkio\Shlink\CLI\Install\Plugin;
use Shlinkio\Shlink\CLI\Model\CustomizableAppConfig;
use Symfony\Component\Console\Style\SymfonyStyle;
interface ConfigCustomizerPluginInterface
interface ConfigCustomizerInterface
{
/**
* @param SymfonyStyle $io

View File

@@ -8,7 +8,7 @@ use Symfony\Component\Console\Style\SymfonyStyle;
use Symfony\Component\Filesystem\Exception\IOException;
use Symfony\Component\Filesystem\Filesystem;
class DatabaseConfigCustomizerPlugin extends AbstractConfigCustomizerPlugin
class DatabaseConfigCustomizer extends AbstractConfigCustomizer
{
const DATABASE_DRIVERS = [
'MySQL' => 'pdo_mysql',

View File

@@ -6,7 +6,7 @@ namespace Shlinkio\Shlink\CLI\Install\Plugin;
use Shlinkio\Shlink\CLI\Model\CustomizableAppConfig;
use Symfony\Component\Console\Style\SymfonyStyle;
class LanguageConfigCustomizerPlugin extends AbstractConfigCustomizerPlugin
class LanguageConfigCustomizer extends AbstractConfigCustomizer
{
const SUPPORTED_LANGUAGES = ['en', 'es'];

View File

@@ -7,7 +7,7 @@ use Shlinkio\Shlink\CLI\Model\CustomizableAppConfig;
use Shlinkio\Shlink\Core\Service\UrlShortener;
use Symfony\Component\Console\Style\SymfonyStyle;
class UrlShortenerConfigCustomizerPlugin extends AbstractConfigCustomizerPlugin
class UrlShortenerConfigCustomizer extends AbstractConfigCustomizer
{
/**
* @param SymfonyStyle $io