Example with MySQL:
/*
* Used to create a populated Staff instance
*/
class StaffCreator
{
/** @var MySql */
private $mySql;
function __construct(MySql $mySql)
{
$this->mySql = $mySql;
}
function createStaff(string $username): Staff
{
$staff = new Staff();
$staff->setData($this->getData($username));
return $staff;
}
function getData(string $username): array
{
return $this->mySql
->query("SELECT .. WHERE username = ?")->param($username)->getResults();
}
}
//calling:
$staff = (new StaffCreator($mysql))->createStaff($username);
Example with Doctrine:
/**
* Creates Ledger
*/
class LedgerCreator
{
private $doctrine;
function __construct(EntityManager $doctrine)
{
$this->doctrine = $doctrine;
}
/**
* Create Domain entity called Ledger,
* populate it with items and metadata
* Return it
*/
function getLedger(int $ledgerId): Ledger
{
$query = $this->doctrine->createQuery('
SELECT ...
FROM ...
WHERE ...
')->setParameter('ledger_id', $ledgerId);
//create, init, populate, and return Ledger instance
$ledger = new Ledger($this->doctrine->find(LedgerEntity::class, $ledgerId));
$ledger->setItems($query->getResult());
return $ledger;
}
}
//to call:
$ledger = new LedgerCreator($doctrine)->createLedger($id);
Is this pattern a factory? A repository? DataMapper? A hybrid? Something else?
This kind of looks like a
Memento
. From the PHP Design Patterns reference:From Wikipedia:
In this example, the BookMark class is the "Memento", and holds the state of the BookReader class. The BookReader class would be the "Originator" in this example, as it had the original state. TestMemento.php holds the BookMark object, and so is the "Caretaker".
Relative to your examples: