Apply php-cs-fixer changes

This commit is contained in:
trizz
2021-12-09 22:25:59 +00:00
committed by GitHub Actions
parent a4bbfbb9a4
commit d24a3956ee
7 changed files with 37 additions and 40 deletions

View File

@ -11,7 +11,7 @@ class Str
*/
public static function matchesAll(string $one, string $two): bool
{
for ($index = 0, $length = strlen($two); $index < $length; $index++) {
for ($index = 0, $length = strlen($two); $index < $length; ++$index) {
if (!str_contains($one, $two[$index])) {
return false;
}