Permet à l'utilisateur de se connecter

This commit is contained in:
2022-11-22 09:30:43 +01:00
parent 53038a5022
commit b4f9d31c2e
11 changed files with 265 additions and 17 deletions

View File

@@ -14,4 +14,9 @@ final class PathHelper
}
return $str;
}
public static function startsWith(string $haystack, string $needle): bool
{
return strpos($haystack, $needle) === 0;
}
}