-
-
Notifications
You must be signed in to change notification settings - Fork 453
Expand file tree
/
Copy pathCreateActionLink.php
More file actions
54 lines (43 loc) · 1.06 KB
/
CreateActionLink.php
File metadata and controls
54 lines (43 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
declare(strict_types=1);
namespace Kreait\Firebase\Auth;
use Kreait\Firebase\Value\Email;
/**
* @internal
*/
final readonly class CreateActionLink
{
private function __construct(
private ?string $tenantId,
private ?string $locale,
private string $type,
private string $email,
private ActionCodeSettings $settings,
) {
}
public static function new(string $type, string $email, ActionCodeSettings $settings, ?string $tenantId = null, ?string $locale = null): self
{
$email = Email::fromString($email)->value;
return new self($tenantId, $locale, $type, $email, $settings);
}
public function type(): string
{
return $this->type;
}
public function email(): string
{
return $this->email;
}
public function settings(): ActionCodeSettings
{
return $this->settings;
}
public function tenantId(): ?string
{
return $this->tenantId;
}
public function locale(): ?string
{
return $this->locale;
}
}