Skip to content

Commit

Permalink
Added symfony 7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
toooni committed Oct 15, 2024
1 parent a2c2bcf commit c56e487
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"minimum-stability": "stable",
"require": {
"php": "^7.4|^8.0",
"symfony/dependency-injection": "^4.1|^5.0|^6.0",
"symfony/http-foundation": "^4.1|^5.0|^6.0",
"symfony/http-kernel": "^4.1|^5.0|^6.0",
"symfony/config": "^4.1|^5.0|^6.0",
"symfony/dependency-injection": "^5.0|^6.0|^7.0",
"symfony/http-foundation": "^5.0|^6.0|^7.0",
"symfony/http-kernel": "^5.0|^6.0|^7.0",
"symfony/config": "^5.0|^6.0|^7.0",
"plivo/php-sdk": "^4.0"
},
"autoload": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Configuration implements ConfigurationInterface
/**
* {@inheritDoc}
*/
public function getConfigTreeBuilder()
public function getConfigTreeBuilder(): TreeBuilder
{
$treeBuilder = new TreeBuilder('invit_plivo');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class InvitPlivoExtension extends Extension
/**
* {@inheritDoc}
*/
public function load(array $configs, ContainerBuilder $container)
public function load(array $configs, ContainerBuilder $container): void
{
$configuration = new Configuration();
$config = $this->processConfiguration($configuration, $configs);
Expand Down

0 comments on commit c56e487

Please sign in to comment.