Fakerino\Core\FakeDataFactory::__construct PHP Метод

__construct() публичный Метод

It receives: the handlers priority for the fake request, the DbInterface for the fakeTable operation, and the TemplateInterface for the fakeTemplate operation.
public __construct ( Fakerino\Core\FakeHandler\HandlerInterface $fakeHandler, Fakerino\Core\Database\DbInterface $db, Fakerino\Core\Template\TemplateInterface $template )
$fakeHandler Fakerino\Core\FakeHandler\HandlerInterface
$db Fakerino\Core\Database\DbInterface
$template Fakerino\Core\Template\TemplateInterface
    public function __construct(HandlerInterface $fakeHandler, DbInterface $db, TemplateInterface $template)
    {
        $this->fakeHandler = $fakeHandler;
        $this->db = $db;
        $this->template = $template;
    }