diff --git a/src/Views/ArrayView.php b/src/Views/ArrayView.php index 70a80e1..4b1eada 100644 --- a/src/Views/ArrayView.php +++ b/src/Views/ArrayView.php @@ -237,7 +237,7 @@ public function is(callable $predicate): MaskSelectorInterface * Returns a subview of this view based on a selector or string slice. * * ##### Example (using selector objects) - * ``` + * ```php * $source = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; * * $subview = ArrayView::toView($source) @@ -251,7 +251,7 @@ public function is(callable $predicate): MaskSelectorInterface * ``` * * ##### Example (using short objects) - * ``` + * ```php * $source = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; * * $subview = ArrayView::toView($source) @@ -265,7 +265,7 @@ public function is(callable $predicate): MaskSelectorInterface * ``` * * ##### Readonly example - * ``` + * ```php * $source = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; * $subview = ArrayView::toView($source)->subview('::2'); *