2022-06-20 14:47:33 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace D3\LinkmobilityClient\ValueObject;
|
|
|
|
|
|
|
|
use Assert\Assert;
|
|
|
|
|
|
|
|
abstract class StringValueObject extends ValueObject
|
|
|
|
{
|
2022-06-24 14:35:17 +02:00
|
|
|
public function __construct(string $number)
|
2022-06-20 14:47:33 +02:00
|
|
|
{
|
2022-06-24 14:35:17 +02:00
|
|
|
Assert::that( $number)->notEmpty();
|
2022-06-20 14:47:33 +02:00
|
|
|
|
2022-06-24 14:35:17 +02:00
|
|
|
$this->value = $number;
|
2022-06-20 14:47:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function __toString()
|
|
|
|
{
|
|
|
|
return $this->get();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get() : string
|
|
|
|
{
|
|
|
|
return $this->value;
|
|
|
|
}
|
|
|
|
}
|