Skip to content

Commit

Permalink
Bump dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdoug committed Jan 1, 2021
1 parent de909d9 commit a10fed7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

return PhpCsFixer\Config::create()
return $config = (new PhpCsFixer\Config())
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
},
"require-dev": {
"behat/behat": "^3.7",
"friendsofphp/php-cs-fixer": "^2.16.4",
"friendsofphp/php-cs-fixer": "^2.17.3",
"dvdoug/behat-code-coverage": "^5.0",
"monolog/monolog": "^1.0||^2.0",
"phpunit/phpunit": "^7.5.20||^8.5.8||^9.3.11"
"phpunit/phpunit": "^7.5.20||^8.5.13||^9.5.0"
},
"config": {
"preferred-install": {
Expand Down
2 changes: 1 addition & 1 deletion tests/WorkingVolumeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class WorkingVolumeTest extends TestCase
*/
private $volume;

public function setUp(): void
protected function setUp(): void
{
$this->volume = new WorkingVolume(1, 2, 3, 4);
}
Expand Down

0 comments on commit a10fed7

Please sign in to comment.