Skip to content

Commit 4342594

Browse files
committed
feat!: remove deprecated meets method
1 parent c33b4a3 commit 4342594

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/HasSpecifications.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,4 @@ public function dissatisfies(Specification $specification): bool
2121
{
2222
return (new NotSpecification($specification))->isSatisfiedBy($this);
2323
}
24-
25-
/**
26-
* @deprecated use `satisfies()` instead
27-
*
28-
* @param Specification<self> $specification
29-
*/
30-
public function meets(Specification $specification): bool
31-
{
32-
return $this->satisfies($specification);
33-
}
3424
}

0 commit comments

Comments
 (0)