for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ntentan\honam\engines\php\helpers\feed;
abstract class Generator
{
protected $properties;
protected $items = array();
public function setup($properties, $items)
$this->items = $items;
$this->properties = $properties;
}
abstract public function generate() : string;