generate document with relatorio: config and driver

This commit is contained in:
2021-12-02 17:00:09 +01:00
parent 475b40e896
commit 2245f83631
7 changed files with 177 additions and 74 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace Chill\DocGeneratorBundle\GeneratorDriver;
interface DriverInterface
{
/**
* @param resource $template
* @return resource
*/
public function generateFromResource($template, string $resourceType, array $data, string $templateName = null);
}