* 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
		
	
	
		
			353 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			353 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace SparkPlug\Com\Noccy\ApiClient\Request;
 | 
						|
 | 
						|
use GuzzleHttp\Psr7\Response;
 | 
						|
 | 
						|
class WebsocketRequest extends Request
 | 
						|
{
 | 
						|
 | 
						|
    public function getInfo(): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    public function send(): ?Response
 | 
						|
    {
 | 
						|
        return null;
 | 
						|
    }
 | 
						|
 | 
						|
    public function getHeaders(): array
 | 
						|
    {
 | 
						|
        return [];
 | 
						|
    }
 | 
						|
 | 
						|
} |