관리-도구
편집 파일: SignInAnonymously.php
<?php declare(strict_types=1); namespace Kreait\Firebase\Auth; /** * @internal */ final class SignInAnonymously implements SignIn { private ?string $tenantId = null; private function __construct() { } public static function new(): self { return new self(); } public function withTenantId(string $tenantId): self { $action = clone $this; $action->tenantId = $tenantId; return $action; } public function tenantId(): ?string { return $this->tenantId; } }