start activity exports adaptations and new additions

This commit is contained in:
2022-08-03 16:48:33 +02:00
parent 32bb868b2b
commit ac0c221267
5 changed files with 148 additions and 10 deletions

View File

@@ -0,0 +1,20 @@
<?php
/**
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Chill\ActivityBundle\Export;
/**
* This class declare constants used for the export framework.
*/
abstract class Declarations
{
public const ACTIVITY = 'activity';
}