rewrite export controller and manager

- upgrade to symfony 4 ;
- add support for directExportInterface
This commit is contained in:
2019-01-15 20:18:47 +01:00
parent f937e9d12c
commit 6741eb949c
3 changed files with 130 additions and 48 deletions

View File

@@ -0,0 +1,15 @@
<?php
/*
*
*/
namespace Chill\MainBundle\Export;
use Symfony\Component\HttpFoundation\Response;
/**
*
*/
interface DirectExportInterface extends ExportElementInterface
{
//put your code here
}