Install github api

This commit is contained in:
Jay Trees 2022-01-21 09:23:52 +01:00
parent 4d22238cee
commit 18a06dccba
589 changed files with 68631 additions and 10 deletions

View file

@ -0,0 +1,30 @@
<?php
namespace Github\Exception;
use Throwable;
class TwoFactorAuthenticationRequiredException extends RuntimeException
{
/** @var string */
private $type;
/**
* @param string $type
* @param int $code
* @param Throwable|null $previous
*/
public function __construct(string $type, int $code = 0, Throwable $previous = null)
{
$this->type = $type;
parent::__construct('Two factor authentication is enabled on this account', $code, $previous);
}
/**
* @return string
*/
public function getType(): string
{
return $this->type;
}
}