PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Exceptions
/
Editing: FixtureMissingException.php
<?php declare(strict_types=1); namespace Saloon\Exceptions; class FixtureMissingException extends SaloonException { /** * Constructor */ public function __construct(string $name) { parent::__construct(sprintf('The fixture "%s" could not be found in storage.', $name)); } }
SAVE
CANCEL