-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
63 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace WsdlToPhp\PackageBase\Tests; | ||
|
||
use WsdlToPhp\PackageBase\AbstractSoapClientBase; | ||
|
||
/** | ||
* Services can specify a custom SoapClient class | ||
* to be used instead of PHP default by overriding | ||
* the constant below. | ||
* | ||
* @see \WsdlToPhp\PackageBase\SoapClientInterface | ||
* @see \WsdlToPhp\PackageBase\AbstractSoapClientBase :: getSoapClientClassName() | ||
*/ | ||
|
||
class CustomSoapClientService extends AbstractSoapClientBase | ||
{ | ||
|
||
/** | ||
* Custom SoapClient class used for current service. | ||
*/ | ||
const DEFAULT_SOAP_CLIENT_CLASS = Client::class; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace WsdlToPhp\PackageBase\Tests; | ||
|
||
use WsdlToPhp\PackageBase\AbstractSoapClientBase; | ||
|
||
/** | ||
* By default all services extending the packagebase's | ||
* abstract class rely on PHP's default SoapClient. | ||
*/ | ||
|
||
class DefaultSoapClientService extends AbstractSoapClientBase | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters