18 lines
224 B
PHP
18 lines
224 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/*
|
||
|
|
* Core PHP Framework
|
||
|
|
*
|
||
|
|
* Licensed under the European Union Public Licence (EUPL) v1.2.
|
||
|
|
* See LICENSE file for details.
|
||
|
|
*/
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Core\Front;
|
||
|
|
|
||
|
|
abstract class Controller
|
||
|
|
{
|
||
|
|
//
|
||
|
|
}
|