for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* NOTICE OF LICENSE
*
* Part of the Rinvex Authy Package.
* This source file is subject to The MIT License (MIT)
* that is bundled with this package in the LICENSE file.
* Package: Rinvex Authy Package
* License: The MIT License (MIT)
* Link: https://rinvex.com
*/
declare(strict_types=1);
namespace Rinvex\Authy;
use Exception;
class InvalidConfiguration extends Exception
{
public static function missingCredentials()
return new static('You need to add `authy` credentials in `config/services.php`.');
}