Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
100.00% covered (success)
0 / 0
100.00% covered (success)
100.00%
0 / 0
CRAP
100.00% covered (success)
100.00%
0 / 0
<?php
declare(strict_types = 1);
namespace Siesta\Contract;
use Siesta\Model\Entity;
/**
 * @author Gregor Müller
 */
interface Generator
{
    public function addPlugin(Plugin $plugin);
    public function generate(Entity $entity, string $baseDir);
}