Enforced property types comments in one line

This commit is contained in:
Alejandro Celaya
2018-11-20 19:30:27 +01:00
parent 15a70d0157
commit 0ae5a53d86
161 changed files with 303 additions and 903 deletions

View File

@@ -28,37 +28,21 @@ class InstallCommand extends Command
public const GENERATED_CONFIG_PATH = 'config/params/generated_config.php';
/**
* @var SymfonyStyle
*/
/** @var SymfonyStyle */
private $io;
/**
* @var ProcessHelper
*/
/** @var ProcessHelper */
private $processHelper;
/**
* @var WriterInterface
*/
/** @var WriterInterface */
private $configWriter;
/**
* @var Filesystem
*/
/** @var Filesystem */
private $filesystem;
/**
* @var ConfigCustomizerManagerInterface
*/
/** @var ConfigCustomizerManagerInterface */
private $configCustomizers;
/**
* @var bool
*/
/** @var bool */
private $isUpdate;
/**
* @var PhpExecutableFinder
*/
/** @var PhpExecutableFinder */
private $phpFinder;
/**
* @var string|bool
*/
/** @var string|bool */
private $phpBinary;
/**