Skip to content

Commit

Permalink
set plugin optional
Browse files Browse the repository at this point in the history
  • Loading branch information
fiste788 committed Oct 10, 2024
1 parent 33c5ec5 commit e8c2d66
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Application.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

declare(strict_types=1);

/**
Expand Down Expand Up @@ -312,8 +313,8 @@ public function services(ContainerInterface $container): void
protected function bootstrapCli(): void
{
$this->addOptionalPlugin(BakePlugin::class);
$this->addPlugin(MigrationsPlugin::class);
$this->addPlugin(IdeHelperPlugin::class);
$this->addOptionalPlugin(MigrationsPlugin::class);
$this->addOptionalPlugin(IdeHelperPlugin::class);
$this->addPlugin(CakeSchedulerPlugin::class);
$this->addPlugin(CakePreloaderPlugin::class);

Expand Down

0 comments on commit e8c2d66

Please sign in to comment.