PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Exceptions
/
Editing: StrayRequestException.php
<?php declare(strict_types=1); namespace Saloon\Exceptions; class StrayRequestException extends SaloonException { public function __construct() { parent::__construct('Attempted to make a real API request! Make sure to use a mock response or fixture.'); } }
SAVE
CANCEL