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 GetRelatedSignatureCommand
{
/** @var string */
private $xml;
public function __construct(string $xml)
$this->xml = $xml;
}
public function xml(): string
return $this->xml;