Add new Strings::startsWith method

- Move previous method to Strings::startsWithChars and update every known call
This commit is contained in:
Hypolite Petovan 2020-05-18 01:05:38 -04:00
parent d0e9fdab5e
commit 75a0b80888
2 changed files with 16 additions and 2 deletions

View file

@ -535,6 +535,6 @@ class Tag
}
}
return Strings::startsWith($tag, $tag_chars);
return Strings::startsWithChars($tag, $tag_chars);
}
}