| Total Complexity | 3 | 
| Total Lines | 26 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php declare(strict_types=1); | ||
| 8 | class OrderStateChangeCriteriaEvent extends Event | ||
| 9 | { | ||
| 10 | /** | ||
| 11 | * @var string | ||
| 12 | */ | ||
| 13 | private $orderId; | ||
| 14 | |||
| 15 | /** | ||
| 16 | * @var Criteria | ||
| 17 | */ | ||
| 18 | private $criteria; | ||
| 19 | |||
| 20 | public function __construct(string $orderId, Criteria $criteria) | ||
| 24 | } | ||
| 25 | |||
| 26 | public function getOrderId(): string | ||
| 29 | } | ||
| 30 | |||
| 31 | public function getCriteria(): Criteria | ||
| 36 |