gabrielbull/php-ups-api

View on GitHub
src/ResponseInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Ups;

use SimpleXMLElement;

interface ResponseInterface
{
    /**
     * @return SimpleXMLElement
     */
    public function getResponse();

    /**
     * @param SimpleXMLElement $response
     */
    public function setResponse(SimpleXMLElement $response);

    /**
     * @return string
     */
    public function getText();

    /**
     * @param string $text
     */
    public function setText($text);
}