dl/includes/ApiCoreRequest.php

18 lines
370 B
PHP
Raw Normal View History

2020-06-17 18:49:28 +00:00
<?php
class ApiCoreRequest extends ApiRequest {
protected static $apiName = 'rise-api-core';
public function __toString () {
return 'ApiCoreRequest[action=' . $this->action . ', method=' . $this->method . ']';
}
public function __construct ($action, $method='GET') {
parent::__construct(static::$apiName, $action, $method);
}
}
?>