18 lines
287 B
PHP
18 lines
287 B
PHP
|
<?php
|
||
|
namespace fox;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* Interface fox\jsonImportable
|
||
|
* @desc used as flag, that object of class can be converted from json-string-value
|
||
|
*
|
||
|
* @copyright MX STAR LLC 2021
|
||
|
* @version 4.0.0
|
||
|
* @author Pavel Dmitriev
|
||
|
* @license GPLv3
|
||
|
*
|
||
|
*/
|
||
|
interface jsonImportable
|
||
|
{
|
||
|
}
|
||
|
?>
|