Eloquent\Phony\Call\Event\ReceivedEvent::__construct PHP Method

__construct() public method

Construct a 'received' event.
public __construct ( integer $sequenceNumber, float $time, mixed $value )
$sequenceNumber integer The sequence number.
$time float The time at which the event occurred, in seconds since the Unix epoch.
$value mixed The received value.
    public function __construct($sequenceNumber, $time, $value)
    {
        parent::__construct($sequenceNumber, $time);
        $this->value = $value;
    }