10 lines
167 B
PHP
10 lines
167 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Do not re-define this function if it already exists
|
||
|
*/
|
||
|
if ( function_exists( 'A7\autoload' ) ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
require_once __DIR__ . '/src/autoload.php';
|