mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 21:27:44 +03:00
Added missing void return type hint
This commit is contained in:
parent
a65ce649ac
commit
d5392a5f59
5 changed files with 5 additions and 30 deletions
|
@ -11,12 +11,7 @@ class ApplicationConfigCustomizer implements ConfigCustomizerInterface
|
||||||
{
|
{
|
||||||
use StringUtilsTrait;
|
use StringUtilsTrait;
|
||||||
|
|
||||||
/**
|
public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig): void
|
||||||
* @param SymfonyStyle $io
|
|
||||||
* @param CustomizableAppConfig $appConfig
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig)
|
|
||||||
{
|
{
|
||||||
$io->title('APPLICATION');
|
$io->title('APPLICATION');
|
||||||
|
|
||||||
|
|
|
@ -8,10 +8,5 @@ use Symfony\Component\Console\Style\SymfonyStyle;
|
||||||
|
|
||||||
interface ConfigCustomizerInterface
|
interface ConfigCustomizerInterface
|
||||||
{
|
{
|
||||||
/**
|
public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig): void;
|
||||||
* @param SymfonyStyle $io
|
|
||||||
* @param CustomizableAppConfig $appConfig
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig);
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,6 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace Shlinkio\Shlink\Installer\Config\Plugin;
|
namespace Shlinkio\Shlink\Installer\Config\Plugin;
|
||||||
|
|
||||||
use Shlinkio\Shlink\Installer\Config\Plugin\ConfigCustomizerInterface;
|
|
||||||
use Shlinkio\Shlink\Installer\Model\CustomizableAppConfig;
|
use Shlinkio\Shlink\Installer\Model\CustomizableAppConfig;
|
||||||
use Symfony\Component\Console\Style\SymfonyStyle;
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
||||||
use Symfony\Component\Filesystem\Exception\IOException;
|
use Symfony\Component\Filesystem\Exception\IOException;
|
||||||
|
@ -28,12 +27,9 @@ class DatabaseConfigCustomizer implements ConfigCustomizerInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param SymfonyStyle $io
|
|
||||||
* @param CustomizableAppConfig $appConfig
|
|
||||||
* @return void
|
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig)
|
public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig): void
|
||||||
{
|
{
|
||||||
$io->title('DATABASE');
|
$io->title('DATABASE');
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace Shlinkio\Shlink\Installer\Config\Plugin;
|
namespace Shlinkio\Shlink\Installer\Config\Plugin;
|
||||||
|
|
||||||
use Shlinkio\Shlink\Installer\Config\Plugin\ConfigCustomizerInterface;
|
|
||||||
use Shlinkio\Shlink\Installer\Model\CustomizableAppConfig;
|
use Shlinkio\Shlink\Installer\Model\CustomizableAppConfig;
|
||||||
use Symfony\Component\Console\Style\SymfonyStyle;
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
||||||
|
|
||||||
|
@ -11,12 +10,7 @@ class LanguageConfigCustomizer implements ConfigCustomizerInterface
|
||||||
{
|
{
|
||||||
private const SUPPORTED_LANGUAGES = ['en', 'es'];
|
private const SUPPORTED_LANGUAGES = ['en', 'es'];
|
||||||
|
|
||||||
/**
|
public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig): void
|
||||||
* @param SymfonyStyle $io
|
|
||||||
* @param \Shlinkio\Shlink\Installer\Model\CustomizableAppConfig $appConfig
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig)
|
|
||||||
{
|
{
|
||||||
$io->title('LANGUAGE');
|
$io->title('LANGUAGE');
|
||||||
|
|
||||||
|
|
|
@ -10,12 +10,7 @@ use function str_shuffle;
|
||||||
|
|
||||||
class UrlShortenerConfigCustomizer implements ConfigCustomizerInterface
|
class UrlShortenerConfigCustomizer implements ConfigCustomizerInterface
|
||||||
{
|
{
|
||||||
/**
|
public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig): void
|
||||||
* @param SymfonyStyle $io
|
|
||||||
* @param CustomizableAppConfig $appConfig
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig)
|
|
||||||
{
|
{
|
||||||
$io->title('URL SHORTENER');
|
$io->title('URL SHORTENER');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue