mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
17 lines
273 B
PHP
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;
|
|
}
|