diff --git a/src/Views/ArrayIndexListView.php b/src/Views/ArrayIndexListView.php index a9877cd..48348b1 100644 --- a/src/Views/ArrayIndexListView.php +++ b/src/Views/ArrayIndexListView.php @@ -14,13 +14,13 @@ * * Each element in the view is based on the specified indexes. * - * + *
  *
  * $source = [1, 2, 3, 4, 5];
  * $view = ArrayView::toView($source)->subview(new IndexListSelector([0, 2, 4]));
  * $view->toArray(); // [1, 3, 5]
  *
- * 
+ * 
* * @template T Type of array source elements. * diff --git a/src/Views/ArrayMaskView.php b/src/Views/ArrayMaskView.php index 9a57f04..bbc8892 100644 --- a/src/Views/ArrayMaskView.php +++ b/src/Views/ArrayMaskView.php @@ -14,15 +14,13 @@ * * Each element in the view is included or excluded based on the specified boolean mask. * - * + *
  *
  * $source = [1, 2, 3, 4, 5];
- *
  * $view = ArrayView::toView($source)->subview(new MaskSelector([true, false, true, false, true]));
- *
  * $view->toArray(); // [1, 3, 5]
  *
- * 
+ * 
* * @template T * diff --git a/src/Views/ArraySliceView.php b/src/Views/ArraySliceView.php index 6b317e1..159d240 100644 --- a/src/Views/ArraySliceView.php +++ b/src/Views/ArraySliceView.php @@ -14,15 +14,13 @@ * Class representing a slice-based view of an array or another ArrayView * for accessing elements within a specified slice range. * - * + *
  *
  * $source = [1, 2, 3, 4, 5];
- *
  * $view = ArrayView::toView($source)->subview(new SliceSelector('::2'));
- *
  * $view->toArray(); // [1, 3, 5]
  *
- * 
+ * 
* * @template T *