File "TmpfsInterface.php"

Full Path: /home/attunedd/public_html/wp-content/plugins/wpide/App/Services/Tmpfs/TmpfsInterface.php
File size: 501 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace WPIDE\App\Services\Tmpfs;

interface TmpfsInterface
{
    public function exists(string $filename): bool;

    public function findAll($pattern): array;

    public function write(string $filename, $data, $append);

    public function read(string $filename): string;

    public function readStream(string $filename): array;

    public function remove(string $filename);

    public function getFileLocation(string $filename): string;

    public function clean(int $older_than);
}