Skip to content

Commit

Permalink
Merge pull request #2 from maxhelias/return-type
Browse files Browse the repository at this point in the history
Allow Sf 7 & Typing some return
  • Loading branch information
magi-web authored Dec 21, 2023
2 parents 3c6cb9b + ba3faa2 commit 3f83a67
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
},
"require": {
"php": ">=7.4",
"symfony/framework-bundle": "^5.0|^6.0",
"symfony/dependency-injection": "^5.0|^6.0",
"symfony/framework-bundle": "^5.4|^6.4|^7.0",
"symfony/dependency-injection": "^5.4|^6.4|^7.0",
"symfony/yaml": "^5.0|^6.0",
"litesaml/lightsaml": "^4.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,7 @@

class Configuration implements ConfigurationInterface
{
/**
* Generates the configuration tree builder.
*
* @return \Symfony\Component\Config\Definition\Builder\TreeBuilder The tree builder
*/
public function getConfigTreeBuilder()
public function getConfigTreeBuilder(): TreeBuilder
{
$treeBuilder = new TreeBuilder('light_saml_symfony_bridge');
$root = $treeBuilder->getRootNode();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

class LightSamlSymfonyBridgeBundle extends Bundle
{
public function build(ContainerBuilder $container)
public function build(ContainerBuilder $container): void
{
parent::build($container);

Expand Down

0 comments on commit 3f83a67

Please sign in to comment.