FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
src
/
Domain
/
ValueObjects
Edit File: DiscountFixedValue.php
<?php namespace AmeliaBooking\Domain\ValueObjects; use AmeliaBooking\Domain\Common\Exceptions\InvalidArgumentException; /** * Class DiscountFixedValue * * @package AmeliaBooking\Domain\ValueObjects */ final class DiscountFixedValue { /** * @var string */ private $value; /** * DiscountFixedValue constructor. * * @param string $value * * @throws InvalidArgumentException */ public function __construct($value) { if ($value === null) { throw new InvalidArgumentException('Discount can\'t be empty'); } if (filter_var($value, FILTER_VALIDATE_FLOAT) === false) { throw new InvalidArgumentException("Discount \"{$value}\" must be float"); } if ($value < 0) { throw new InvalidArgumentException('Discount must be larger then or equal to 0'); } $this->value = (float)$value; } /** * Return the value from the value object * * @return string */ public function getValue() { return $this->value; } }
Save
Back