Skip to content

Commit

Permalink
[TASK] Allow PHP 8 (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbertsoft authored Dec 20, 2021
1 parent fcbc032 commit be1f7eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
max-parallel: 4
fail-fast: false
matrix:
php: ['7.4', '8.0']
php: ['7.4', '8.0', '8.1']
symfony: ['^4.4', '^5.0']
include:
- symfony: '^4.4'
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<server name="APP_ENV" value="test" force="true" />
<server name="SHELL_VERBOSITY" value="-1" />
<server name="SYMFONY_PHPUNIT_REMOVE" value="" />
<server name="SYMFONY_PHPUNIT_VERSION" value="7.5" />
<server name="SYMFONY_PHPUNIT_VERSION" value="8.5" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
</php>

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/DependencyInjection/TemplateExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class TemplateExtensionTest extends TestCase
/** @var ContainerBuilder */
protected $configuration;

protected function tearDown()
protected function tearDown(): void
{
$this->configuration = null;
}
Expand Down

0 comments on commit be1f7eb

Please sign in to comment.