Skip to content

Commit

Permalink
[#209] rename from add strategy to set strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
pheaturebot committed May 24, 2021
1 parent ac15450 commit f00d1d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ToggleConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Mezzio\Application;
use Pheature\Core\Toggle\Read\FeatureFinder;
use Pheature\Core\Toggle\Write\FeatureRepository;
use Pheature\Crud\Psr11\Toggle\AddStrategyFactory;
use Pheature\Crud\Psr11\Toggle\SetStrategyFactory;
use Pheature\Crud\Psr11\Toggle\CreateFeatureFactory;
use Pheature\Crud\Psr11\Toggle\DeleteFeatureFactory;
use Pheature\Crud\Psr11\Toggle\DisableFeatureFactory;
Expand All @@ -26,7 +26,7 @@
use Pheature\Crud\Psr7\Toggle\GetFeatures;
use Pheature\Crud\Psr7\Toggle\PatchFeature;
use Pheature\Crud\Psr7\Toggle\PostFeature;
use Pheature\Crud\Toggle\Handler\AddStrategy;
use Pheature\Crud\Toggle\Handler\SetStrategy;
use Pheature\Crud\Toggle\Handler\CreateFeature;
use Pheature\Crud\Toggle\Handler\DisableFeature;
use Pheature\Crud\Toggle\Handler\EnableFeature;
Expand All @@ -53,7 +53,7 @@ public function __invoke(): array
CommandRunner::class => CommandRunnerFactory::class,
// CRUD
CreateFeature::class => CreateFeatureFactory::class,
AddStrategy::class => AddStrategyFactory::class,
SetStrategy::class => SetStrategyFactory::class,
RemoveStrategy::class => RemoveStrategyFactory::class,
EnableFeature::class => EnableFeatureFactory::class,
DisableFeature::class => DisableFeatureFactory::class,
Expand Down

0 comments on commit f00d1d6

Please sign in to comment.