moonspot/builder

Base classes for creating Builder classes

Installs: 3 481

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/moonspot/builder

v1.1.0 2025-10-01 01:09 UTC

This package is auto-updated.

Last update: 2025-10-01 01:27:24 UTC


README

This library provides a base class for helping implement the Builder Pattern. This is handy for building objects from JSON data being delivered from APIs. It is also handy for converting one class to another.

From Wikipedia:

The builder pattern is a design pattern that provides a flexible solution to various object creation problems in object-oriented programming. The builder pattern separates the construction of a complex object from its representation.

use Moonspot\Builder;
use Example\MyObject;

class MyBuilder extends Builder {

    public function create(array|object $data): object {
        // need an array to work with
        if(is_object($data)) {
            $data = (array)$data;
        }

        $obj = new MyObject();
        
        // setValue handles nulls and isset issues
        $this->setValue($obj, 'id', $data);
        
        // setValue can also look for multiple keys
        // If either name or description is set in the data array
        // it will be set to name in the object.
        $this->setValue($obj, 'name', $data, ['description'])
    }
}

$object = MyBuilder::build([
    'id'   => 12345, 
    'name' => 'Some name',
]);

See Also

To make the objects easier to work with, use Value Objects.