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