18 lines
No EOL
374 B
PHP
18 lines
No EOL
374 B
PHP
<?php
|
|
|
|
class ApiSearchRequest extends ApiRequest {
|
|
|
|
protected static $apiName = 'rise-api-search';
|
|
|
|
public function __toString () {
|
|
return 'ApiCoreRequest[action=' . $this->action . ', method=' . $this->method . ']';
|
|
}
|
|
|
|
public function __construct ($action, $method='GET') {
|
|
|
|
parent::__construct(static::$apiName, $action, $method);
|
|
|
|
}
|
|
|
|
}
|
|
?>
|