for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright (c) 2017 Constantin Galbenu <[email protected]>
*/
namespace Gica\Cqrs\Saga;
class EventOrder
{
* @var int
private $sequence;
private $index;
public function __construct(
int $sequence,
int $index
)
$this->sequence = $sequence;
$this->index = $index;
}
public function getSequence(): int
return $this->sequence;
public function getIndex(): int
return $this->index;