10 lines
151 B
PHP
10 lines
151 B
PHP
|
|
<?php
|
||
|
|
use Webkul\Core\Core;
|
||
|
|
|
||
|
|
if (! function_exists('core')) {
|
||
|
|
function core()
|
||
|
|
{
|
||
|
|
return new Core;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
?>
|