1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00

Code style

This commit is contained in:
fluffycondor 2023-03-17 16:46:00 +06:00
parent 723e40840e
commit cf86b16199

View File

@ -1061,19 +1061,19 @@ function str_split(string $string, int $length = 1) {}
* @psalm-pure
* @return ($needle is '' ? true : ($haystack is '' ? false : bool))
*/
function str_starts_with(string $haystack, string $needle): bool
function str_starts_with(string $haystack, string $needle): bool {}
/**
* @psalm-pure
* @return ($needle is '' ? true : ($haystack is '' ? false : bool))
*/
function str_ends_with(string $haystack, string $needle): bool
function str_ends_with(string $haystack, string $needle): bool {}
/**
* @psalm-pure
* @return ($needle is '' ? true : ($haystack is '' ? false : bool))
*/
function str_contains(string $haystack, string $needle): bool
function str_contains(string $haystack, string $needle): bool {}
/**
* @psalm-pure