Fix typo in StrStartsWithRector code sample

This commit is contained in:
Guilliam Xavier 2020-05-23 15:54:59 +02:00 committed by GitHub
parent 80f429b5b7
commit b118a18642
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ class SomeClass
{
$isMatch = str_starts_with($haystack, $needle);
$isMatch = ! str_starts_with($haystack, $needle);
$isNotMatch = ! str_starts_with($haystack, $needle);
}
}
PHP