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