10 lines
165 B
PHP
10 lines
165 B
PHP
<?php
|
|
class WidgetApi extends ApiController{
|
|
public function check($subDeviceId){
|
|
//$this->requireAuth();
|
|
$response = null;
|
|
|
|
$this->response($response);
|
|
}
|
|
}
|