forked from roadster31/PdfGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPdfGenerator.php
23 lines (20 loc) · 963 Bytes
/
PdfGenerator.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/*************************************************************************************/
/* Copyright (c) Franck Allimant, CQFDev */
/* email : thelia@cqfdev.fr */
/* web : http://www.cqfdev.fr */
/* */
/* For the full copyright and license information, please view the LICENSE */
/* file that was distributed with this source code. */
/*************************************************************************************/
/**
* Created by Franck Allimant, CQFDev <franck@cqfdev.fr>
* Date: 24/01/2019 19:44
*/
namespace PdfGenerator;
use Thelia\Module\BaseModule;
class PdfGenerator extends BaseModule
{
/** @var string */
const DOMAIN_NAME = 'pdfgenerator';
}