Skip to content
This repository was archived by the owner on Feb 21, 2022. It is now read-only.

Upgrade symfony dependency #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
],
"require": {
"php": ">=7.0",
"symfony/console": "^3.2||^4.0",
"symfony/process": "^3.2||^4.0",
"symfony/finder": "^3.2||^4.0",
"symfony/filesystem": "^3.2||^4.0",
"symfony/yaml": "^3.2||^4.0",
"symfony/event-dispatcher": "^3.2||^4.0",
"symfony/property-access": "^3.2||^4.0"
"symfony/console": "^4.4||^5.0",
"symfony/process": "^4.4||^5.0",
"symfony/finder": "^4.4||^5.0",
"symfony/filesystem": "^4.4||^5.0",
"symfony/yaml": "^4.4||^5.0",
"symfony/event-dispatcher": "^4.4||^5.0",
"symfony/property-access": "^4.4||^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.8.3",
Expand Down
4 changes: 3 additions & 1 deletion src/PHPFormatter/Command/PHPFormatterCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ protected function configure()
* @param InputInterface $input Input
* @param OutputInterface $output Output
*
* @return int|null|void
* @return int
*
* @throws Exception
*/
Expand Down Expand Up @@ -119,6 +119,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
$files,
$fixer
);

return 0;
}

/**
Expand Down