Eloquent\Phony\Call\Event\ProducedEvent::__construct PHP Метод

__construct() публичный Метод

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