$builder
$builder : \Omega\Database\QueryBuilder\AbstractQueryBuilder
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.
$builder : \Omega\Database\QueryBuilder\AbstractQueryBuilder
__construct(\Omega\Database\QueryBuilder\AbstractQueryBuilder $builder, string $class) : void
ModelCollector class constructor.
\Omega\Database\QueryBuilder\AbstractQueryBuilder | $builder | Holds the query builder instance. |
string | $class | Holds the fully qualified class name of the model. |
__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.
string | $method | Holds the method name. |
array |
$parameters | Holds the method parameters. |
Return $this if the method is fluent, otherwise, returns the method result.
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.
Return an instance of the model, or null if no results are found.