1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-08 06:06:45 +02:00

feat(endpoints): rename method validate_access_token to validateAccess_Token

This commit is contained in:
Awilum
2021-07-17 13:50:41 +03:00
parent 0a55b90b53
commit c1af3dcd4e

View File

@@ -14,7 +14,7 @@ use function filesystem;
/**
* Validate access token
*/
function validate_access_token(string $token): bool
function validateAccessToken(string $token): bool
{
return filesystem()->file(PATH['project'] . '/tokens/access/' . $token . '/token.yaml')->exists();
}