Christopher Vagnetoft
8cc1eac7a4
* Implemented ScriptRunner with environment expansion and cleaner code. * Added ApiClient plugin (com.noccy.apiclient) * Renamed CHANGELOG.md to VERSIONS.md * Shuffled buildtools * Added first unittests
26 lines
351 B
PHP
26 lines
351 B
PHP
<?php
|
|
|
|
namespace SparkPlug\Com\Noccy\ApiClient\Request;
|
|
|
|
use GuzzleHttp\Psr7\Response;
|
|
|
|
class JsonRpcRequest extends Request
|
|
{
|
|
|
|
public function getInfo(): array
|
|
{
|
|
return [
|
|
];
|
|
}
|
|
|
|
public function send(): ?Response
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public function getHeaders(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
} |