Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Jun 8, 2023
1 parent d1b27e4 commit 754f2b3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -208,12 +208,12 @@

// add commands optinally
if (class_exists(MissingInSetCommand::class)) {
$services->set(Application::class)
->call('add', [service(MissingInSetCommand::class)])
->call('add', [service(OutsideAnySetCommand::class)]);

$services->set(MissingInSetCommand::class);
$services->set(OutsideAnySetCommand::class);

$services->set(ConsoleApplication::class)
->call('add', [service(MissingInSetCommand::class)])
->call('add', [service(OutsideAnySetCommand::class)]);
}

// phpdoc parser
Expand Down

0 comments on commit 754f2b3

Please sign in to comment.