ZwiiCMS/core/class/filebase/Format/FormatInterface.php

9 lines
204 B
PHP
Raw Normal View History

2022-03-25 11:51:01 +01:00
<?php namespace Filebase\Format;
interface FormatInterface
{
public static function getFileExtension();
public static function encode($data, $pretty);
public static function decode($data);
}