![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/medad.corals.io/vendor/kreait/firebase-php/src/Firebase/Exception/Auth/ |
<?php declare(strict_types=1); namespace Kreait\Firebase\Exception\Auth; use Kreait\Firebase\Exception\AuthException; use Kreait\Firebase\Factory; use RuntimeException; final class AuthError extends RuntimeException implements AuthException { public static function missingProjectId(string $message): self { $factoryClass = Factory::class; $fullMessage = <<<MSG {$message} The current Firebase project is configured without a project ID. The project ID can be determined automatically with service account credentials, by providing a `GOOGLE_CLOUD_PROJECT=project_id` environment variable, or manually by using the respective method when instantiating the SDK's factory ({$factoryClass}). MSG; return new self($fullMessage); } }