관리-도구
편집 파일: DecoderInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\RuntimeException; interface DecoderInterface { /** * Decode given input either to color or image * * @throws RuntimeException */ public function decode(mixed $input): ImageInterface|ColorInterface; }