Skip to content

Commit

Permalink
+ Code optimisations
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieu2607 committed Dec 5, 2024
1 parent c3cc432 commit 9923b85
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 37 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/build.yml

This file was deleted.

2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
## 2.6.1 (05/12/2024)

+ Add html block
+ Update readme
+ Code optimisations

## 2.6.0 (21/05/2024)

Expand Down
13 changes: 0 additions & 13 deletions sonar-project.properties

This file was deleted.

2 changes: 1 addition & 1 deletion src/DependencyInjection/BlockExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ public function prepend(ContainerBuilder $container): void
public function load(array $configs, ContainerBuilder $container): void
{
$configuration = new Configuration();
$config = $this->processConfiguration($configuration, $configs);
$this->processConfiguration($configuration, $configs);
}
}
3 changes: 1 addition & 2 deletions src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ class Configuration implements ConfigurationInterface
{
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder('pixel_blockbundle');
return $treeBuilder;
return new TreeBuilder('pixel_blockbundle');
}
}

0 comments on commit 9923b85

Please sign in to comment.