12 lines
371 B
PHP
12 lines
371 B
PHP
<?php
|
|
/**
|
|
* This file bootstraps the SocketFramework by initializing the error_reporting to E_ALL
|
|
* and initializing the ClassLoader.
|
|
* @author jpt
|
|
*/
|
|
error_reporting(\E_ALL);
|
|
require_once("Classes" . \DIRECTORY_SEPARATOR . "Core" . \DIRECTORY_SEPARATOR . "ClassLoader.php");
|
|
|
|
$classLoader = new \JPT\SocketFramework\Core\ClassLoader();
|
|
$classLoader->initialize();
|
|
?>
|