/home2/mshostin/crm.ms-hostingladz.com/vendor/intervention/image/src/Interfaces/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;
}