comsave/soap-client

View on GitHub
src/Phpforce/SoapClient/Result/Error.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phpforce\SoapClient\Result;

/**
 * An error
 */
class Error
{
    protected $fields;
    protected $message;
    protected $statusCode;

    /**
     * @return array
     */
    public function getFields()
    {
        return $this->fields;
    }

    /**
     * @return string
     */
    public function getMessage()
    {
        return $this->message;
    }

    /**
     * @return string
     */
    public function getStatusCode()
    {
        return $this->statusCode;
    }
}