* (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; /** * Provides a SoapClient instance. * * @author Francis Besset * @author Christian Kerl * @author Petr BechynÄ› */ class SoapClientOptionsBuilder { public static function createWithDefaults() { return new SoapClientOptions( SoapClientOptions::SOAP_CLIENT_TRACE_OFF, SoapClientOptions::SOAP_CLIENT_EXCEPTIONS_ON, 'BeSimpleSoap', SoapClientOptions::SOAP_CLIENT_COMPRESSION_NONE ); } }