[TASK] Removed all the protocol handlers. [TASK] Clients are no longer part of the SocketFramework itself. [TASK] The Framework provides an "interface" to external clients - the ClientDispatcher. [TASK] Added the Core package and added a better ClassLoader. [TASK] Created a bootstrap module to include in other projects. [TASK] Cleaned up comments, reformatted them.
12 lines
306 B
PHP
12 lines
306 B
PHP
<?php
|
|
error_reporting(E_ALL);
|
|
require_once('SocketFramework' . DIRECTORY_SEPARATOR . 'Bootstrap.php');
|
|
|
|
try {
|
|
require_once('Testcode' . DIRECTORY_SEPARATOR . 'Client' . DIRECTORY_SEPARATOR . 'ClientManagerTest.php');
|
|
}
|
|
catch(Exception $e) {
|
|
echo PHP_EOL.PHP_EOL."Caught Exception: " . $e . PHP_EOL;
|
|
}
|
|
|
|
?>
|