summaryrefslogtreecommitdiff
path: root/tests/src/Payload.php
blob: c9b8c1985682c84444be7be68c5f660c47ec01cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php

/**
 * High-performance PHP process supervisor and load balancer written in Go.
 *
 * @author Wolfy-J
 */

declare(strict_types=1);

namespace Spiral\RoadRunner;

/**
 * Class Payload
 *
 * @package Spiral\RoadRunner
 */
final class Payload
{
    /**
     * Execution payload (binary).
     *
     * @var string|null
     */
    public ?string $body;

    /**
     * Execution context (binary).
     *
     * @var string|null
     */
    public ?string $header;

    /**
     * @param string|null $body
     * @param string|null $header
     */
    public function __construct(?string $body, ?string $header = null)
    {
        $this->body = $body;
        $this->header = $header;
    }
}