From e56289062ed8a25c78c88f35e9106f00d01369c1 Mon Sep 17 00:00:00 2001 From: Steve Bauman Date: Fri, 21 Jan 2022 16:41:41 -0500 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7ea4090..6b095cc 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ $app->register(Stevebauman\Purify\PurifyServiceProvider::class); To clean a users input, simply use the clean method: ```php -$input = '

Test

'; +$input = '

Test

'; // Returns '

Test

' $cleaned = Purify::clean($input); @@ -52,8 +52,8 @@ Need to purify an array of user input? Just pass in an array: ```php $array = [ - '

Test

', - '

Test

', + '

Test

', + '

Test

', ]; $cleaned = Purify::clean($array);