Your IP : 216.73.216.130


Current Path : /var/www/html/wp-content/plugins/wpide/App/Services/Tmpfs/
Upload File :
Current File : /var/www/html/wp-content/plugins/wpide/App/Services/Tmpfs/TmpfsInterface.php

<?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);
}