Skip to content

Commit

Permalink
Update selectors.md
Browse files Browse the repository at this point in the history
Signed-off-by: Nathanael Esayeas <nathanael.esayeas@protonmail.com>
  • Loading branch information
ghostwriter committed Sep 2, 2024
1 parent 46e8a01 commit c1b3f7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/documentation/selectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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)

Expand Down

0 comments on commit c1b3f7a

Please sign in to comment.