From 02a8bc3c7a67707e025d35b8be890f77fdf0a4dc Mon Sep 17 00:00:00 2001 From: Awilum Date: Sat, 5 Dec 2020 14:23:20 +0300 Subject: [PATCH] add ability to extend Strings class with Macros. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f93f2be..073bd72 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ $strings = strings(); Strings are "macroable", which allows you to add additional methods to the Strings class at run time. For example, the following code adds a customMethod method to the Strings class: ```php -use Atomastic\Arrays\Strings; +use Atomastic\Strings\Strings; use Atomastic\Macroable\Macroable; Strings::macro('concatenate', function(string $string) {