for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Lisachenko\Protocol\FCGI\Record;
use Lisachenko\Protocol\FCGI;
use Lisachenko\Protocol\FCGI\Record;
/**
* Stdin binary stream
*
* FCGI_STDIN is a stream record type used in sending arbitrary data from the Web server to the application
* @author Alexander.Lisachenko
*/
class Stdin extends Record
{
public function __construct(string $contentData = '')
$this->type = FCGI::STDIN;
$this->setContentData($contentData);
}