-
-
Notifications
You must be signed in to change notification settings - Fork 222
/
NodeRelationAnchorPoint.php
55 lines (45 loc) · 1.16 KB
/
NodeRelationAnchorPoint.php
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
55
<?php
/*
* This file is part of the Neos.ContentGraph.DoctrineDbalAdapter package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/
declare(strict_types=1);
namespace Neos\ContentGraph\DoctrineDbalAdapter\Domain\Projection;
use Neos\Flow\Utility\Algorithms;
/**
* The node relation anchor value object
*
* @internal
*/
class NodeRelationAnchorPoint implements \JsonSerializable
{
private function __construct(
public readonly string $value
) {
}
public static function create(): self
{
return new self(Algorithms::generateUUID());
}
public static function forRootEdge(): self
{
return new self('00000000-0000-0000-0000-000000000000');
}
public static function fromString(string $value): self
{
return new self($value);
}
public function jsonSerialize(): string
{
return $this->value;
}
public function equals(self $other): bool
{
return $other->value === $this->value;
}
}