mirror of
https://github.com/bitinflow/bunny-cli.git
synced 2026-03-13 13:45:54 +00:00
15 lines
317 B
PHP
15 lines
317 B
PHP
<?php
|
|
|
|
namespace App\Bunny\Filesystem;
|
|
|
|
interface File
|
|
{
|
|
public const EMPTY_SHA256 = '0000000000000000000000000000000000000000000000000000000000000000';
|
|
|
|
public function getFilename($search = '', $replace = ''): string;
|
|
|
|
public function getChecksum(): ?string;
|
|
|
|
public function isDirectory(): bool;
|
|
}
|