2011-10-09 20:17:50 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the BeSimpleSoapBundle.
|
|
|
|
*
|
|
|
|
* (c) Christian Kerl <christian-kerl@web.de>
|
|
|
|
* (c) Francis Besset <francis.besset@gmail.com>
|
|
|
|
*
|
|
|
|
* This source file is subject to the MIT license that is bundled
|
|
|
|
* with this source code in the file LICENSE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace BeSimple\SoapClient;
|
|
|
|
|
|
|
|
use BeSimple\SoapCommon\AbstractSoapBuilder;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Francis Besset <francis.besset@gmail.com>
|
|
|
|
*/
|
|
|
|
class SoapClientBuilder extends AbstractSoapBuilder
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @return SoapClientBuilder
|
|
|
|
*/
|
|
|
|
static public function createWithDefaults()
|
|
|
|
{
|
|
|
|
return parent::createWithDefaults()
|
|
|
|
->withUserAgent('BeSimpleSoap')
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function withTrace($trace = true)
|
|
|
|
{
|
2011-10-10 00:02:20 +02:00
|
|
|
$this->soapOptions['trace'] = $trace;
|
2011-10-09 20:17:50 +02:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function withExceptions($exceptions = true)
|
|
|
|
{
|
2011-10-10 00:02:20 +02:00
|
|
|
$this->soapOptions['exceptions'] = $exceptions;
|
2011-10-09 20:17:50 +02:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function withUserAgent($userAgent)
|
|
|
|
{
|
2011-10-10 00:02:20 +02:00
|
|
|
$this->soapOptions['user_agent'] = $userAgent;
|
2011-10-09 20:17:50 +02:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|