Added AbstractSoapBuilder

This commit is contained in:
Francis Besset
2011-10-09 19:13:12 +02:00
parent 402f229971
commit 15123e9719
4 changed files with 339 additions and 1 deletions

View File

@ -5,7 +5,7 @@ error_reporting(E_ALL | E_STRICT);
// register silently failing autoloader
spl_autoload_register(function($class) {
if (0 === strpos($class, 'BeSimple\Tests\\')) {
$path = __DIR__.'/../'.strtr($class, '\\', '/').'.php';
$path = __DIR__.'/'.strtr($class, '\\', '/').'.php';
if (file_exists($path) && is_readable($path)) {
require_once $path;