mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-16 10:22:14 +01:00
Make InstallCommand properties and methods private
This commit is contained in:
parent
8f20df6559
commit
39cd51a3f9
@ -26,17 +26,17 @@ class InstallCommand extends ContainerAwareCommand
|
||||
/**
|
||||
* @var InputInterface
|
||||
*/
|
||||
protected $defaultInput;
|
||||
private $defaultInput;
|
||||
|
||||
/**
|
||||
* @var SymfonyStyle
|
||||
*/
|
||||
protected $io;
|
||||
private $io;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $functionExists = [
|
||||
private $functionExists = [
|
||||
'curl_exec',
|
||||
'curl_multi_init',
|
||||
];
|
||||
@ -81,7 +81,7 @@ class InstallCommand extends ContainerAwareCommand
|
||||
$this->io->success('You can now configure your web server, see https://doc.wallabag.org');
|
||||
}
|
||||
|
||||
protected function checkRequirements()
|
||||
private function checkRequirements()
|
||||
{
|
||||
$this->io->section('Step 1 of 4: Checking system requirements.');
|
||||
|
||||
@ -181,7 +181,7 @@ class InstallCommand extends ContainerAwareCommand
|
||||
return $this;
|
||||
}
|
||||
|
||||
protected function setupDatabase()
|
||||
private function setupDatabase()
|
||||
{
|
||||
$this->io->section('Step 2 of 4: Setting up database.');
|
||||
|
||||
@ -249,7 +249,7 @@ class InstallCommand extends ContainerAwareCommand
|
||||
return $this;
|
||||
}
|
||||
|
||||
protected function setupAdmin()
|
||||
private function setupAdmin()
|
||||
{
|
||||
$this->io->section('Step 3 of 4: Administration setup.');
|
||||
|
||||
@ -284,7 +284,7 @@ class InstallCommand extends ContainerAwareCommand
|
||||
return $this;
|
||||
}
|
||||
|
||||
protected function setupConfig()
|
||||
private function setupConfig()
|
||||
{
|
||||
$this->io->section('Step 4 of 4: Config setup.');
|
||||
$em = $this->getContainer()->get(EntityManagerInterface::class);
|
||||
@ -320,7 +320,7 @@ class InstallCommand extends ContainerAwareCommand
|
||||
* @param string $command
|
||||
* @param array $parameters Parameters to this command (usually 'force' => true)
|
||||
*/
|
||||
protected function runCommand($command, $parameters = [])
|
||||
private function runCommand($command, $parameters = [])
|
||||
{
|
||||
if (!$this->runOtherCommands) {
|
||||
return $this;
|
||||
|
Loading…
Reference in New Issue
Block a user