linkmobility-php-client/src/ValueObject/StringValueObject.php

28 regels
441 B
PHP

<?php
declare(strict_types=1);
namespace D3\LinkmobilityClient\ValueObject;
use Assert\Assert;
abstract class StringValueObject extends ValueObject
{
public function __construct(string $value)
{
Assert::that($value)->notEmpty();
$this->value = $value;
}
public function __toString()
{
return $this->get();
}
public function get() : string
{
return $this->value;
}
}