From f332964d2d564a3e068649f341305d107dbc3496 Mon Sep 17 00:00:00 2001 From: Smoren Date: Tue, 12 Mar 2024 20:09:56 +0300 Subject: [PATCH] Minor changes. --- src/Interfaces/ArrayViewInterface.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Interfaces/ArrayViewInterface.php b/src/Interfaces/ArrayViewInterface.php index 72faeb2..c82d035 100644 --- a/src/Interfaces/ArrayViewInterface.php +++ b/src/Interfaces/ArrayViewInterface.php @@ -33,10 +33,10 @@ public static function toView(&$source, ?bool $readonly = null): ArrayViewInterf /** * Creates an unlinked from source ArrayView instance from the given source array or ArrayView. * - * * If the source is not an ArrayView, a new ArrayView is created with the provided source. - * * If the source is an ArrayView and the `readonly` parameter is specified as `true`, - * a new readonly ArrayView is created. - * * If the source is an ArrayView and it is already readonly, the same ArrayView is returned. + * * If the source is not an ArrayView, a new ArrayView is created with the provided source. + * * If the source is an ArrayView and the `readonly` parameter is specified as `true`, + * a new readonly ArrayView is created. + * * If the source is an ArrayView and it is already readonly, the same ArrayView is returned. * * @param array|ArrayViewInterface $source The source array or ArrayView to create a view from. * @param bool|null $readonly Optional flag to indicate whether the view should be readonly.