PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Contracts
/
DataObjects
/
Editing: WithResponse.php
<?php declare(strict_types=1); namespace Saloon\Contracts\DataObjects; use Saloon\Http\Response; interface WithResponse { /** * Set the response on the data object. * * @return $this */ public function setResponse(Response $response): static; /** * Get the response on the data object. */ public function getResponse(): Response; }
SAVE
CANCEL