ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
RamseyUuidWrapper.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 namespace ILIAS\Data\UUID;
6 
7 use Ramsey\Uuid\UuidInterface as RamseyUuidInterface;
8 
15 class RamseyUuidWrapper implements Uuid
16 {
17  private RamseyUuidInterface $wrapped_uuid;
18 
19  public function __construct(RamseyUuidInterface $wrapped_uuid)
20  {
21  $this->wrapped_uuid = $wrapped_uuid;
22  }
23 
24  public function getWrappedUuid(): RamseyUuidInterface
25  {
26  return $this->wrapped_uuid;
27  }
28 
29  public function compareTo(Uuid $other): int
30  {
31  return $this->wrapped_uuid->compareTo($other->getWrappedUuid());
32  }
33 
34  public function equals(Uuid $other): bool
35  {
36  return $this->wrapped_uuid->equals($other->getWrappedUuid());
37  }
38 
39  public function toString(): string
40  {
41  return $this->wrapped_uuid->toString();
42  }
43 
44  public function __toString(): string
45  {
46  return $this->toString();
47  }
48 }
compareTo(Uuid $other)
Compares this UUID to the specified UUID.
equals(Uuid $other)
Compares this object to the specified object.
__construct(RamseyUuidInterface $wrapped_uuid)
toString()
Converts this UUID into a string representation.
__toString()
Enforce that UUID implementation implement the __toString() magic method.