From f74d07c2a934e4c61065a2f484800259a9b25b32 Mon Sep 17 00:00:00 2001 From: rafageist Date: Wed, 14 Aug 2024 09:38:05 -0300 Subject: [PATCH] minor fixes --- composer.json | 2 +- src/laze.php | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 6024b17..fee85f4 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "lazy initialization" ], "homepage": "https://divengine.org", - "version": "1.1.0", + "version": "1.1.1", "authors": [ { "name": "Rafa Rodriguez", diff --git a/src/laze.php b/src/laze.php index 1ae5828..75282e8 100644 --- a/src/laze.php +++ b/src/laze.php @@ -7,7 +7,7 @@ /** * [[]] Div PHP Laze * - * A PHP library for defining lazy inmutable values. Values are set as closures + * A PHP library for defining lazy immutable values. Values are set as closures * and only materialize upon first access, ensuring efficient and controlled * initialization. * @@ -26,7 +26,6 @@ * * @package divengine/laze * @author Rafa Rodriguez @rafageist [https://rafageist.com] - * @version 1.1.0 * * @link https://divengine.org * @link https://github.com/divengine/div @@ -38,7 +37,7 @@ class laze * Version of the library. * @var string */ - private static string $__version = '1.1.0'; + private static string $__version = '1.1.1'; /** * Store for lazy immutable values.