Protocol\FCGI\Record\BeginRequest::__construct PHP Method

__construct() public method

public __construct ( $role = FCGI::UNKNOWN_ROLE, $flags, $reserved = '' )
    public function __construct($role = FCGI::UNKNOWN_ROLE, $flags = 0, $reserved = '')
    {
        $this->type = FCGI::BEGIN_REQUEST;
        $this->role = $role;
        $this->flags = $flags;
        $this->reserved1 = $reserved;
        $this->setContentData($this->packPayload());
    }