diff --git a/src/Interfaces/ArrayParameterInterface.php b/src/Interfaces/ArrayParameterInterface.php index c6e2f02..d67578c 100644 --- a/src/Interfaces/ArrayParameterInterface.php +++ b/src/Interfaces/ArrayParameterInterface.php @@ -61,12 +61,4 @@ public function withOptional(ParameterInterface ...$parameter): self; public function withModify(ParameterInterface ...$parameter): self; public function assertCompatible(self $parameter): void; - - /** - * Return an instance requiring at least `$count` of optional arguments. - * - * This method MUST retain the state of the current instance, and return - * an instance that contains the specified optional parameters. - */ - public function withOptionalMinimum(int $count): self; }