TrackManiaControl/core/General/Dumpable.php

12 lines
189 B
PHP

<?php
namespace ManiaControl\General;
/**
* Object implementing this Interface has a dump() Method
*
* @package ManiaControl\General
*/
interface Dumpable {
public function dump();
}