mirror of
https://github.com/bitinflow/bunny-cli.git
synced 2026-03-13 13:45:54 +00:00
11 lines
166 B
PHP
11 lines
166 B
PHP
<?php
|
|
|
|
namespace App\Bunny\Filesystem;
|
|
|
|
interface FileSerialized
|
|
{
|
|
public function toArray(): array;
|
|
|
|
public static function fromArray(array $array): self;
|
|
}
|