FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
src
/
Models
/
Builders
Edit File: SnippetBuilder.php
<?php declare(strict_types=1); namespace Square\Models\Builders; use Core\Utils\CoreHelper; use Square\Models\Snippet; /** * Builder for model Snippet * * @see Snippet */ class SnippetBuilder { /** * @var Snippet */ private $instance; private function __construct(Snippet $instance) { $this->instance = $instance; } /** * Initializes a new snippet Builder object. */ public static function init(string $content): self { return new self(new Snippet($content)); } /** * Sets id field. */ public function id(?string $value): self { $this->instance->setId($value); return $this; } /** * Sets site id field. */ public function siteId(?string $value): self { $this->instance->setSiteId($value); return $this; } /** * Sets created at field. */ public function createdAt(?string $value): self { $this->instance->setCreatedAt($value); return $this; } /** * Sets updated at field. */ public function updatedAt(?string $value): self { $this->instance->setUpdatedAt($value); return $this; } /** * Initializes a new snippet object. */ public function build(): Snippet { return CoreHelper::clone($this->instance); } }
Save
Back