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\Stamping;
class QueryPendingCommand
{
/** @var string */
private $uuid;
public function __construct(string $uuid)
$this->uuid = $uuid;
}
public function uuid(): string
return $this->uuid;