<?php
/* Please see the README and LICENSE files. */
/**
* Things that the system can load
*/
interface System_Component {
/**
* Start core component
*
* @return bool True if component started correctly, false otherwise
*/
public function start();
/**
* Stop core component
*
* @return bool True if component stopped correctly, false otherwise
*/
public function stop();
}
?>