* @link https://www.oxidmodule.com */ declare(strict_types=1); namespace D3\LinkmobilityClient\ValueObject; abstract class StringValueObject extends ValueObject { public function __toString() { return $this->get(); } public function get(): string { return $this->value; } }