Replaced Bundle\WebServiceBundle by BeSimple\SoapBundle
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/*
|
||||
* This file is part of the WebServiceBundle.
|
||||
* This file is part of the BeSimpleSoapBundle.
|
||||
*
|
||||
* (c) Christian Kerl <christian-kerl@web.de>
|
||||
*
|
||||
@ -8,12 +8,12 @@
|
||||
* with this source code in the file LICENSE.
|
||||
*/
|
||||
|
||||
namespace Bundle\WebServiceBundle\Tests\Soap;
|
||||
namespace BeSimple\SoapBundle\Tests\Soap;
|
||||
|
||||
use Bundle\WebServiceBundle\Soap\SoapRequest;
|
||||
use BeSimple\SoapBundle\Soap\SoapRequest;
|
||||
|
||||
/**
|
||||
* UnitTest for \Bundle\WebServiceBundle\Soap\SoapRequest.
|
||||
* UnitTest for \BeSimple\SoapBundle\Soap\SoapRequest.
|
||||
*
|
||||
* @author Christian Kerl <christian-kerl@web.de>
|
||||
*/
|
||||
|
@ -11,7 +11,7 @@ $loader->register();
|
||||
|
||||
spl_autoload_register(function($class) {
|
||||
//if (0 === strpos($class, 'BeSimple\\SoapBundle\\')) {
|
||||
if (0 === strpos($class, 'Bundle\\WebServiceBundle\\')) {
|
||||
if (0 === strpos($class, 'BeSimple\\SoapBundle\\')) {
|
||||
$path = __DIR__.'/../'.implode('/', array_slice(explode('\\', $class), 2)).'.php';
|
||||
|
||||
if (file_exists($path)) {
|
||||
|
Reference in New Issue
Block a user