notfalsedev / laravel-soap

A soap client wrapper for Laravel
MIT License
634 stars 122 forks source link

Client : getCookies method #133

Closed devkdouglass closed 6 years ago

devkdouglass commented 6 years ago

Current Code

public function getCookies()
  {
    return $this->__cookies;
  }

Should Be

public function getCookies()
  {
    return $this->__getCookies();
  }
notfalsedev commented 6 years ago

If i look at the documention: http://php.net/manual/en/class.soapclient.php The function __getCookies() does not exist, so i don't think it's correct. If you can provide me with proper documention i will take a look at it.