Skip to content

Commit

Permalink
Code checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
webeweb committed May 7, 2024
1 parent 6f791a3 commit ea7432b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/common/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Configuration.
*
* @author webeweb <https://github.com/webeweb>
* @package WBW\Bundle\CoreBundle\DependencyInjection
* @package WBW\Bundle\CommonBundle\DependencyInjection
*/
class Configuration implements ConfigurationInterface {

Expand Down Expand Up @@ -95,11 +95,11 @@ private function addSectionPlugins(ArrayNodeDefinition $node, array $plugins): v

$node
->children()
->arrayNode("plugins")->info("Core plug-ins")
->arrayNode("plugins")->info("Common plug-ins")
->prototype("scalar")
->validate()
->ifNotInArray(array_keys($plugins))
->thenInvalid("The Core plug-in %s is not supported. Please choose one of " . json_encode(array_keys($plugins)))
->thenInvalid("The common plug-in %s is not supported. Please choose one of " . json_encode(array_keys($plugins)))
->end()
->end()
->end()
Expand Down
2 changes: 1 addition & 1 deletion lib/common/Tests/Fixtures/Command/TestAbstractCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class TestAbstractCommand extends AbstractCommand {
* {@inheritDoc}
*/
protected function configure(): void {
$this->setName("wbw:core:abstract");
$this->setName("wbw:common:abstract");
}

/**
Expand Down

0 comments on commit ea7432b

Please sign in to comment.