Files
bunny-cli/app/Bunny/Filesystem/FileSerialized.php
2021-07-22 16:42:01 +02:00

11 lines
166 B
PHP

<?php
namespace App\Bunny\Filesystem;
interface FileSerialized
{
public function toArray(): array;
public static function fromArray(array $array): self;
}