Skip to content

Commit 8a60410

Browse files
committed
PHPdoc fix.
1 parent 5973850 commit 8a60410

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Views/ArrayView.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ public function is(callable $predicate): MaskSelectorInterface
237237
* Returns a subview of this view based on a selector or string slice.
238238
*
239239
* ##### Example (using selector objects)
240-
* ```
240+
* ```php
241241
* $source = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
242242
*
243243
* $subview = ArrayView::toView($source)
@@ -251,7 +251,7 @@ public function is(callable $predicate): MaskSelectorInterface
251251
* ```
252252
*
253253
* ##### Example (using short objects)
254-
* ```
254+
* ```php
255255
* $source = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
256256
*
257257
* $subview = ArrayView::toView($source)
@@ -265,7 +265,7 @@ public function is(callable $predicate): MaskSelectorInterface
265265
* ```
266266
*
267267
* ##### Readonly example
268-
* ```
268+
* ```php
269269
* $source = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
270270
* $subview = ArrayView::toView($source)->subview('::2');
271271
*

0 commit comments

Comments
 (0)