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