From c1b3f7a3e20255fec0d5e70a6436d60738044e44 Mon Sep 17 00:00:00 2001 From: Nathanael Esayeas Date: Sun, 1 Sep 2024 19:38:51 -0500 Subject: [PATCH] Update selectors.md Signed-off-by: Nathanael Esayeas --- docs/documentation/selectors.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/documentation/selectors.md b/docs/documentation/selectors.md index fff524eb..29409db5 100644 --- a/docs/documentation/selectors.md +++ b/docs/documentation/selectors.md @@ -144,7 +144,7 @@ Selector::OneOf( This will select all classes that are in the `App\User` namespace or are abstract or are traits, but not more than one of them. -## Selector::AtLeastXOf(int $min, ...$selectors) +## Selector::AtLeastCountOf(int $min, ...$selectors) Selects classes that match at least X of the inner Selectors. (at least x of operator) @@ -157,7 +157,7 @@ Selector::AtLeastCountOf(2, This will select all classes that are in the `App\User` namespace and are abstract. -## Selector::AtMostXOf(int $max, ...$selectors) +## Selector::AtMostCountOf(int $max, ...$selectors) Selects classes that match at most X of the inner Selectors. (at most x of operator)