uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
www
/
wp-content
/
plugins
/
.
/
charitable
/
vendor
/
.
/
square
/
square
/
src
/
Types
/
Range.php
/
/
<?php namespace Square\Types; use Square\Core\Json\JsonSerializableType; use Square\Core\Json\JsonProperty; /** * The range of a number value between the specified lower and upper bounds. */ class Range extends JsonSerializableType { /** * The lower bound of the number range. At least one of `min` or `max` must be specified. * If unspecified, the results will have no minimum value. * * @var ?string $min */ #[JsonProperty('min')] private ?string $min; /** * The upper bound of the number range. At least one of `min` or `max` must be specified. * If unspecified, the results will have no maximum value. * * @var ?string $max */ #[JsonProperty('max')] private ?string $max; /** * @param array{ * min?: ?string, * max?: ?string, * } $values */ public function __construct( array $values = [], ) { $this->min = $values['min'] ?? null; $this->max = $values['max'] ?? null; } /** * @return ?string */ public function getMin(): ?string { return $this->min; } /** * @param ?string $value */ public function setMin(?string $value = null): self { $this->min = $value; return $this; } /** * @return ?string */ public function getMax(): ?string { return $this->max; } /** * @param ?string $value */ public function setMax(?string $value = null): self { $this->max = $value; return $this; } /** * @return string */ public function __toString(): string { return $this->toJson(); } }
/home/batcwwjx/www/wp-content/plugins/./charitable/vendor/./square/square/src/Types/Range.php