PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
spatie
/
image
/
src
/
Exceptions
/
Editing: InvalidImageDriver.php
<?php namespace Spatie\Image\Exceptions; use Exception; class InvalidImageDriver extends Exception { public static function driver(string $driver): self { return new self("Driver must be `gd` or `imagick`. `{$driver}` provided."); } }
SAVE
CANCEL