Files
git-contribution-graph/src/Service/Provider/ProviderErrorCode.php
T

14 lines
285 B
PHP

<?php
declare(strict_types=1);
namespace GitContributionGraph\Service\Provider;
enum ProviderErrorCode: string
{
case AuthFailed = 'auth_failed';
case UrlUnreachable = 'url_unreachable';
case UserNotFound = 'user_not_found';
case Unknown = 'unknown';
}