From 6dbd43cc3e8f35879e1add2fba6801aa97443e12 Mon Sep 17 00:00:00 2001 From: freekmurze Date: Tue, 25 Oct 2022 08:30:53 +0000 Subject: [PATCH] Fix styling --- tests/HelpersTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/HelpersTest.php b/tests/HelpersTest.php index 14f6161b..e91c153f 100644 --- a/tests/HelpersTest.php +++ b/tests/HelpersTest.php @@ -11,7 +11,7 @@ ['https://spatie.be', 'file://', false], ]); -it('can determine if a string starts contains a substring', function(string $haystack, $needle, $expectedResult) { +it('can determine if a string starts contains a substring', function (string $haystack, $needle, $expectedResult) { expect(Helpers::stringContains($haystack, $needle))->toBe($expectedResult); })->with([ ['heyheyfile://', 'file://', true],