kopia lustrzana https://github.com/friendica/friendica
23 wiersze
354 B
PHP
23 wiersze
354 B
PHP
|
<?php
|
||
|
|
||
|
namespace Friendica;
|
||
|
|
||
|
use Psr\Log\LoggerInterface;
|
||
|
|
||
|
/**
|
||
|
* Factories act as an intermediary to avoid direct Entitiy instanciation.
|
||
|
*
|
||
|
* @see BaseModel
|
||
|
* @see BaseCollection
|
||
|
*/
|
||
|
abstract class BaseFactory
|
||
|
{
|
||
|
/** @var LoggerInterface */
|
||
|
protected $logger;
|
||
|
|
||
|
public function __construct(LoggerInterface $logger)
|
||
|
{
|
||
|
$this->logger = $logger;
|
||
|
}
|
||
|
}
|