Files
chill-bundles/src/Bundle/ChillMainBundle/Export/GroupedExportInterface.php
2021-03-18 13:37:13 +01:00

17 lines
273 B
PHP

<?php
/*
*
*/
namespace Chill\MainBundle\Export;
/**
* Add a grouping option to exports.
*
* **usage**: the exports will be grouped under the key given by the `getGroup`
* method.
*/
interface GroupedExportInterface
{
public function getGroup(): string;
}