FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
src
/
Models
/
Builders
Edit File: PhaseBuilder.php
<?php declare(strict_types=1); namespace Square\Models\Builders; use Core\Utils\CoreHelper; use Square\Models\Phase; /** * Builder for model Phase * * @see Phase */ class PhaseBuilder { /** * @var Phase */ private $instance; private function __construct(Phase $instance) { $this->instance = $instance; } /** * Initializes a new phase Builder object. */ public static function init(): self { return new self(new Phase()); } /** * Sets uid field. */ public function uid(?string $value): self { $this->instance->setUid($value); return $this; } /** * Unsets uid field. */ public function unsetUid(): self { $this->instance->unsetUid(); return $this; } /** * Sets ordinal field. */ public function ordinal(?int $value): self { $this->instance->setOrdinal($value); return $this; } /** * Unsets ordinal field. */ public function unsetOrdinal(): self { $this->instance->unsetOrdinal(); return $this; } /** * Sets order template id field. */ public function orderTemplateId(?string $value): self { $this->instance->setOrderTemplateId($value); return $this; } /** * Unsets order template id field. */ public function unsetOrderTemplateId(): self { $this->instance->unsetOrderTemplateId(); return $this; } /** * Sets plan phase uid field. */ public function planPhaseUid(?string $value): self { $this->instance->setPlanPhaseUid($value); return $this; } /** * Unsets plan phase uid field. */ public function unsetPlanPhaseUid(): self { $this->instance->unsetPlanPhaseUid(); return $this; } /** * Initializes a new phase object. */ public function build(): Phase { return CoreHelper::clone($this->instance); } }
Save
Back