config
This commit is contained in:
17
app_old/app/Alias/Format.php
Normal file
17
app_old/app/Alias/Format.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Alias;
|
||||
|
||||
use App\Helper\Format as F;
|
||||
|
||||
class Format
|
||||
{
|
||||
public static function __callstatic($name, $params)
|
||||
{
|
||||
if (method_exists(F, $name)) {
|
||||
return F::$name($params);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user