/var/www/flurhymez/vendor/facade/ignition/src/SolutionProviders
Edit: /var/www/flurhymez/vendor/facade/ignition/src/SolutionProviders/TableNotFoundSolutionProvider.php (959B)
isBadTableErrorCode($throwable->getCode());
}
protected function isBadTableErrorCode($code): bool
{
return $code === static::MYSQL_BAD_TABLE_CODE;
}
public function getSolutions(Throwable $throwable): array
{
return [new RunMigrationsSolution('A table was not found')];
}
}