관리-도구
편집 파일: FileInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\RuntimeException; interface FileInterface { /** * Save data in given path in file system * * @throws RuntimeException */ public function save(string $filepath): void; /** * Create file pointer from encoded data * * @return resource */ public function toFilePointer(); /** * Return size in bytes */ public function size(): int; /** * Turn encoded data into string */ public function toString(): string; /** * Cast encoded data into string */ public function __toString(): string; }