Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Command/AbstractCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function __construct(
*
* @return int
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$this->input = $input;
$this->output = $output;
Expand Down
4 changes: 2 additions & 2 deletions Command/ExportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function __construct(
*
* @return void
*/
protected function configure()
protected function configure(): void
{
$this->setName(self::COMMAND_NAME);
$this->setDescription('Export settings from "core_config_data" into a file');
Expand Down Expand Up @@ -130,7 +130,7 @@ protected function configure()
/**
* @return int
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
parent::execute($input, $output);
$this->writeSection('Start Export');
Expand Down
4 changes: 2 additions & 2 deletions Command/ImportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function __construct(
*
* @return void
*/
protected function configure()
protected function configure(): void
{
$this->setName(self::COMMAND_NAME);
$this->setDescription('Import "core_config_data" settings for an environment');
Expand Down Expand Up @@ -143,7 +143,7 @@ protected function configure()
*
* @return int
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
parent::execute($input, $output);

Expand Down
Loading