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