Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Builders
:
CategoryPathToRootNodeBuilder.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models\Builders; use WPForms\Vendor\Core\Utils\CoreHelper; use WPForms\Vendor\Square\Models\CategoryPathToRootNode; /** * Builder for model CategoryPathToRootNode * * @see CategoryPathToRootNode */ class CategoryPathToRootNodeBuilder { /** * @var CategoryPathToRootNode */ private $instance; private function __construct(CategoryPathToRootNode $instance) { $this->instance = $instance; } /** * Initializes a new Category Path To Root Node Builder object. */ public static function init() : self { return new self(new CategoryPathToRootNode()); } /** * Sets category id field. * * @param string|null $value */ public function categoryId(?string $value) : self { $this->instance->setCategoryId($value); return $this; } /** * Unsets category id field. */ public function unsetCategoryId() : self { $this->instance->unsetCategoryId(); return $this; } /** * Sets category name field. * * @param string|null $value */ public function categoryName(?string $value) : self { $this->instance->setCategoryName($value); return $this; } /** * Unsets category name field. */ public function unsetCategoryName() : self { $this->instance->unsetCategoryName(); return $this; } /** * Initializes a new Category Path To Root Node object. */ public function build() : CategoryPathToRootNode { return CoreHelper::clone($this->instance); } }