File "DefaultDbNameSolutionProvider.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/facade/ignition/src/SolutionProviders/DefaultDbNameSolutionProvider.php
File size: 894 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Facade\Ignition\SolutionProviders;
use Facade\Ignition\Solutions\SuggestUsingCorrectDbNameSolution;
use Facade\IgnitionContracts\HasSolutionsForThrowable;
use Illuminate\Database\QueryException;
use Throwable;
class DefaultDbNameSolutionProvider implements HasSolutionsForThrowable
{
public const MYSQL_UNKNOWN_DATABASE_CODE = 1049;
public function canSolve(Throwable $throwable): bool
{
if (! $throwable instanceof QueryException) {
return false;
}
if ($throwable->getCode() !== self::MYSQL_UNKNOWN_DATABASE_CODE) {
return false;
}
if (! in_array(env('DB_DATABASE'), ['homestead', 'laravel'])) {
return false;
}
return true;
}
public function getSolutions(Throwable $throwable): array
{
return [new SuggestUsingCorrectDbNameSolution()];
}
}