You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
397 B
23 lines
397 B
<?php
|
|
|
|
namespace blobt\airpc;
|
|
|
|
use yii\console\controllers\HelpController;
|
|
|
|
class Yee {
|
|
|
|
private static $instance;
|
|
|
|
public static function getInstaance() {
|
|
if (empty(self::$instance)) {
|
|
self::$instance = new self();
|
|
}
|
|
return self::$instance;
|
|
}
|
|
|
|
public function run() {
|
|
$ret = "some data ".$_SERVER['data'];
|
|
return $ret;
|
|
}
|
|
|
|
}
|