2017-03-24 22:08:51 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl\General;
|
|
|
|
|
2017-03-26 12:56:44 +02:00
|
|
|
/**
|
|
|
|
* Object implementing this Interface has a dump() Method
|
|
|
|
*
|
|
|
|
* @package ManiaControl\General
|
|
|
|
*/
|
2017-03-24 22:08:51 +01:00
|
|
|
interface Dumpable {
|
|
|
|
public function dump();
|
|
|
|
}
|