Initial commit

This commit is contained in:
2019-11-20 07:44:43 +01:00
commit 5bf49c4a81
41188 changed files with 5459177 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
/*
* This file is part of the ICanBoogie package.
*
* (c) Olivier Laviale <olivier.laviale@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace ICanBoogie;
/**
* The charset used by the application. Defaults to "utf-8".
*
* @var string
*/
defined('ICanBoogie\CHARSET') or define('ICanBoogie\CHARSET', 'utf-8');
if (function_exists('mb_internal_encoding'))
{
mb_internal_encoding(CHARSET);
}