ruạṛ
<?php namespace CleverIt\UBL\Invoice; /** * Class representing PartialDeliveryIndicator */ class PartialDeliveryIndicator { /** * @var bool $__value */ private $__value = null; /** * Construct * * @param bool $value */ public function __construct($value) { $this->value($value); } /** * Gets or sets the inner value * * @param bool $value * @return bool */ public function value() { if ($args = func_get_args()) { $this->__value = $args[0]; } return $this->__value; } /** * Gets a string value * * @return string */ public function __toString() { return strval($this->__value); } }
cải xoăn