PATH:
home
/
centosnipponia
/
cronjscript
/
vendor
/
league
/
oauth2-google
/
src
/
Exception
<?php namespace League\OAuth2\Client\Exception; /** * Exception thrown if the Google Provider is configured with a hosted domain that the user doesn't belong to */ class HostedDomainException extends \Exception { /** * @param $configuredDomain * * @return static */ public static function notMatchingDomain($configuredDomain): self { return new static("User is not part of domain '$configuredDomain'"); } }
[+]
..
[-] HostedDomainException.php
[edit]