Skip to content

Commit

Permalink
[#30] Update FeatureRepository::remove contract to accept Feature ins…
Browse files Browse the repository at this point in the history
…tead of FeatureId
  • Loading branch information
xserrat committed Oct 6, 2021
1 parent a8570c8 commit 2716fd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Write/FeatureRepository.php
Expand Up @@ -7,6 +7,6 @@
interface FeatureRepository
{
public function save(Feature $feature): void;
public function remove(FeatureId $featureId): void;
public function remove(Feature $feature): void;
public function get(FeatureId $featureId): Feature;
}

0 comments on commit 2716fd9

Please sign in to comment.