12 lines
201 B
PHP
12 lines
201 B
PHP
|
<?php
|
||
|
|
||
|
namespace ManiaControl\General;
|
||
|
|
||
|
/**
|
||
|
* Object implementing this Interface has a toJson() Method
|
||
|
*
|
||
|
* @package ManiaControl\General
|
||
|
*/
|
||
|
interface JsonSerializable {
|
||
|
public function toJson();
|
||
|
}
|