Skip to content

Commit

Permalink
All selectors made final.
Browse files Browse the repository at this point in the history
  • Loading branch information
Smoren committed Mar 17, 2024
1 parent ff8a0bb commit 302b6a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Selectors/MaskSelector.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* print_r($view->subview($selector)->toArray()); // [1, 3, 5]
* ```
*/
class MaskSelector implements MaskSelectorInterface
final class MaskSelector implements MaskSelectorInterface
{
/**
* @var array<bool> The array of boolean mask values to select elements based on.
Expand Down
2 changes: 1 addition & 1 deletion src/Selectors/PipeSelector.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* print_r($originalArray); // [1, 2, 3, 4, 55, 6, 77, 8, 9, 10]
* ```
*/
class PipeSelector implements PipeSelectorInterface
final class PipeSelector implements PipeSelectorInterface
{
/**
* @var array<ArraySelectorInterface> An array of selectors to be applied sequentially.
Expand Down
2 changes: 1 addition & 1 deletion src/Selectors/SliceSelector.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* print_r($view->subview($selector)->toArray()); // [9, 8, 7, 6, 5, 4, 3, 2]
* ```
*/
class SliceSelector extends Slice implements ArraySelectorInterface
final class SliceSelector extends Slice implements ArraySelectorInterface
{
/**
* Creates a new SliceSelector instance with the provided slice parameters.
Expand Down

0 comments on commit 302b6a6

Please sign in to comment.