for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: siim
* Date: 14.02.19
* Time: 7:54
*/
namespace Sf4\Api\Request;
use Sf4\Api\Response\EmptyResponse;
class EmptyRequest extends AbstractRequest
{
public function __construct()
$this->init(
new EmptyResponse()
);
}
protected function getCacheTags(): array
return [];
protected function getCacheExpiresAfter(): ?int
return null;