*/ abstract class AbstractContainerToken implements InterfaceToken { /** * @var string */ protected $value; /** * @param string $value */ public function __construct($value) { $this->value = $value; } /** * @param string $value */ public function setValue($value) { $this->value = $value; } /** * @return string */ public function getValue() { return $this->value; } }