* (c) Francis Besset * * 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\SoapOptions\SoapOptions; /** * Provides a SoapClient instance. * * @author Francis Besset * @author Christian Kerl * @author Petr BechynÄ› */ class SoapClientBuilder { public function build(SoapClientOptions $soapClientOptions, SoapOptions $soapOptions) { return new SoapClient( $soapClientOptions, $soapOptions ); } }