first indicator for calendar exports

This commit is contained in:
2022-08-17 16:04:46 +02:00
parent 5060906591
commit 3c5d533c58
5 changed files with 145 additions and 0 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\CalendarBundle\Export;
/**
* This class declare constants used for the export framework.
*/
abstract class Declarations
{
public const CALENDAR_TYPE = 'calendar';
}