Documentation

MappingObjectFactory implements IObjectFactory

Tags

Table of Contents

$mapper Data mapper IModelMapper
$properties Properties IPropertySet
$pNames Property names string[]
__construct() mixed
addPropertyConfig() Adds an additional property config to this repo. mixed
create() Create a new Model instance using the internal data mapper. IModel
createPropertySet() Clones and returns the internal property set used to construct objects. IPropertySet
createPropertyNameSet() Retrieves a set containing the property names. IBigSet
test() Test that one or more models is the correct type. void
mapper() IModelMapper
properties() IPropertySet
getInsertProperties() IBigSet
getModifiedProperties() IBigSet
filterPropertyNamesForSave() Removes any properties flagged with SUBCONFIG from the list of property names array

Properties

Methods

addPropertyConfig()

Adds an additional property config to this repo.

public addPropertyConfig( ...$config : type ) : mixed

When models reference themselves, sometimes it's necessary for a property config to reference the repository (circular).

Feels a bit like cheating to me...

Warning: This method should only be caled from composition root. This can obviously have some unintended side effects when used in other locations.

Parameters
$config : type
Return values
mixed

create()

Create a new Model instance using the internal data mapper.

public create( $data : array [, $readOnly : bool = false ] ) : IModel
Parameters
$data : array

Raw data to use

$readOnly : bool = false

Set the produced model to read only

Tags
throws
DBException

For db errors

todo

Create some code that can disable or remove properties that are not fetched when the model is built. Think about this a bit...

Return values
IModel

model instance

createPropertyNameSet()

Retrieves a set containing the property names.

public createPropertyNameSet( ) : IBigSet
Return values
IBigSet

set

filterPropertyNamesForSave()

Removes any properties flagged with SUBCONFIG from the list of property names

private filterPropertyNamesForSave( $names : string[] , $model : IModel ) : array
Parameters
$names : string[]

Property names

$model : IModel
Tags
throws
Exception

if model is an incorrect type.

Return values
array

filtered names

Search results