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
:
InvoiceQueryBuilder.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\InvoiceFilter; use WPForms\Vendor\Square\Models\InvoiceQuery; use WPForms\Vendor\Square\Models\InvoiceSort; /** * Builder for model InvoiceQuery * * @see InvoiceQuery */ class InvoiceQueryBuilder { /** * @var InvoiceQuery */ private $instance; private function __construct(InvoiceQuery $instance) { $this->instance = $instance; } /** * Initializes a new Invoice Query Builder object. * * @param InvoiceFilter $filter */ public static function init(InvoiceFilter $filter) : self { return new self(new InvoiceQuery($filter)); } /** * Sets sort field. * * @param InvoiceSort|null $value */ public function sort(?InvoiceSort $value) : self { $this->instance->setSort($value); return $this; } /** * Initializes a new Invoice Query object. */ public function build() : InvoiceQuery { return CoreHelper::clone($this->instance); } }