Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/SoapClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function (Request $request, array $options) {
* @param HandlerInterface|null $handler
* @return $this
*/
private function setHandler(HandlerInterface $handler = null)
protected function setHandler(HandlerInterface $handler = null)
{
$this->handler = $handler ?? HttPlugHandle::createForClient(
Client::createWithConfig($this->handlerOptions)
Expand All @@ -142,7 +142,7 @@ private function setHandler(HandlerInterface $handler = null)
/**
* Adds middleware to the handler.
*/
private function addMiddleware()
protected function addMiddleware()
{
foreach ($this->middlewares as $middleware) {
$this->handler->addMiddleware($middleware);
Expand Down Expand Up @@ -395,7 +395,7 @@ public function byConfig(string $setup)
* @param array $items
* @return array
*/
private function arrayKeysToCamel(array $items)
protected function arrayKeysToCamel(array $items)
{
$changedItems = [];
foreach ($items as $key => $value) {
Expand Down Expand Up @@ -501,7 +501,7 @@ public function buildStubHandler()
/**
* @return $this
*/
private function refreshEngine()
protected function refreshEngine()
{
$this->refreshExtSoapOptions();
$this->engine = ExtSoapEngineFactory::fromOptionsWithHandler(
Expand All @@ -513,7 +513,7 @@ private function refreshEngine()
return $this;
}

private function refreshExtSoapOptions()
protected function refreshExtSoapOptions()
{
if ($this->factory->isRecording()) {
$this->baseWsdl($this->factory->getFakeWsdl());
Expand Down