FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
src
/
Models
/
Builders
Edit File: ShippingFeeBuilder.php
<?php declare(strict_types=1); namespace Square\Models\Builders; use Core\Utils\CoreHelper; use Square\Models\Money; use Square\Models\ShippingFee; /** * Builder for model ShippingFee * * @see ShippingFee */ class ShippingFeeBuilder { /** * @var ShippingFee */ private $instance; private function __construct(ShippingFee $instance) { $this->instance = $instance; } /** * Initializes a new shipping fee Builder object. */ public static function init(Money $charge): self { return new self(new ShippingFee($charge)); } /** * Sets name field. */ public function name(?string $value): self { $this->instance->setName($value); return $this; } /** * Unsets name field. */ public function unsetName(): self { $this->instance->unsetName(); return $this; } /** * Initializes a new shipping fee object. */ public function build(): ShippingFee { return CoreHelper::clone($this->instance); } }
Save
Back