for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Deltatuts\Fixer\Request;
use Deltatuts\Fixer\Endpoint\AbstractBaseEndpoint;
use GuzzleHttp\Psr7\Request;
/**
* Class GetSupportedSymbolsRequest
* @package Deltatuts\Fixer\Request
*/
class GetSupportedSymbolsRequest extends Request
{
* GetSupportedSymbolsRequest constructor.
* @param $uri
public function __construct($uri)
parent::__construct(AbstractBaseEndpoint::GET, $uri);
}