\Omega\Database ModelCollector

Model collector class.

The ModelCollector class is responsible for collecting query and trasforming them into model instance, This class acts as a bridge between the query builder and model instances, facilitating the transformation of raw database results into instances of the specified model class.

Summary

Methods
Properties
Constants
__construct
__call
first
all
No public properties found
No public constants found
No protected methods found
No protected properties found
No protected constants found
No private methods found
builder
class
No private constants found

Properties

$class

$class : string

Type

string

Methods

__construct()

__construct(\Omega\Database\QueryBuilder\AbstractQueryBuilder  $builder, string  $class) : void

ModelCollector class constructor.

Parameters

\Omega\Database\QueryBuilder\AbstractQueryBuilder $builder

Holds the query builder instance.

string $class

Holds the fully qualified class name of the model.

Returns

void —

__call()

__call(string  $method, array  $parameters = []) : $this|mixed

Magic method to forward undefined method calls to the underlying query builder instance.

This method allows dynamic method calls on the ModelCollector, delegating them to the underlying query builder instance. This is particularly useful for building queries fluently.

Parameters

string $method

Holds the method name.

array $parameters

Holds the method parameters.

Returns

$this|mixed —

Return $this if the method is fluent, otherwise, returns the method result.

first()

first() : mixed|null

Retrieve the first result from the query and transform it into an instance of the model.

This method executes the query and returns the first result as an instance of the specified model class.

Returns

mixed|null —

Return an instance of the model, or null if no results are found.

all()

all() : array

Retrieve all results from the query and transform each into an instance of the model.

This method executes the query and returns an array of instances of the specified model class.

Returns

array —

Return an array of model instances, or an empty array if no results are found.