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 SwitchCommand
{
/** @var string */
private $rfc;
/** @var CustomerType */
private $customerType;
public function __construct(string $rfc, CustomerType $customerType)
$this->rfc = $rfc;
$this->customerType = $customerType;
}
public function rfc(): string
return $this->rfc;
public function customerType(): CustomerType
return $this->customerType;