for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PhpCfdi\Finkok\Services\Cancel;
class RelatedItem
{
/** @var string */
private $uuid;
private $rfcEmitter;
private $rfcReceiver;
public function __construct(string $uuid, string $rfcEmitter, string $rfcReceiver)
$this->uuid = $uuid;
$this->rfcEmitter = $rfcEmitter;
$this->rfcReceiver = $rfcReceiver;
}
public function uuid(): string
return $this->uuid;
public function rfcEmitter(): string
return $this->rfcEmitter;
public function rfcReceiver(): string
return $this->rfcReceiver;