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

9 lines
204 B
PHP

<?php namespace Filebase\Format;
interface FormatInterface
{
public static function getFileExtension();
public static function encode($data, $pretty);
public static function decode($data);
}