1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-21 13:11:52 +02:00

Split e_shims into correct files for autoloading

This commit is contained in:
Nick Liu 2018-10-31 09:37:07 -05:00
parent 4c6828be93
commit b2de51dd1b
No known key found for this signature in database
GPG Key ID: 1167C5F9C9897637
3 changed files with 34 additions and 13 deletions

View File

@ -0,0 +1,17 @@
<?php
/**
* e107 website system
*
* Copyright (C) 2008-2018 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
* Shims for PHP internal functions
*/
namespace e107\Shims;
class All
{
use InternalShims;
}

View File

@ -0,0 +1,17 @@
<?php
/**
* e107 website system
*
* Copyright (C) 2008-2018 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
* Shims for PHP internal functions
*/
namespace e107\Shims;
class Internal
{
use InternalShims;
}

View File

@ -9,19 +9,6 @@
* Shims for PHP internal functions
*/
namespace e107\Shims
{
class All
{
use InternalShims;
}
class Internal
{
use InternalShims;
}
}
// e107 v2-style classes
namespace
{