2014-06-29 15:15:38 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Console aware class, encapsulates the Console CommandLine class
|
|
|
|
*/
|
2014-06-29 22:38:24 +00:00
|
|
|
class Alternc_Diagnostic_Console extends Console_CommandLine{
|
|
|
|
|
|
|
|
const DESCRIPTION = "Handles diagnostics of an alternc server.";
|
|
|
|
const VERSION = "0.1";
|
|
|
|
|
|
|
|
function __construct(array $params = array()) {
|
|
|
|
$params = array(
|
|
|
|
'description' => self::DESCRIPTION,
|
|
|
|
'version' => self::VERSION
|
|
|
|
);
|
|
|
|
|
|
|
|
parent::__construct($params);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2014-06-29 15:15:38 +00:00
|
|
|
|