Skip to content

Instantly share code, notes, and snippets.

@zeromodule
Created June 2, 2017 10:19
Show Gist options
  • Save zeromodule/a722f712b331308a83d0ae177ae98b11 to your computer and use it in GitHub Desktop.
Save zeromodule/a722f712b331308a83d0ae177ae98b11 to your computer and use it in GitHub Desktop.
<?php
namespace CoreDomain;
class Id
{
private $value;
public function __construct($value)
{
$this->value = (string)$value;
}
public function getValue()
{
return $this->value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment