for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Barenote\Domain;
/**
* Class Token
* @package BareNote\Barenote\Domain
*/
class Token
{
private $value;
public function __construct(string $token)
$this->value = $token;
}
public function getValue(): string
return $this->value;
public function __toString()