for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace PersonalGalaxy\Identity\Command\Identity;
use PersonalGalaxy\Identity\Entity\Identity\Identity;
final class VerifyPassword
{
private $identity;
private $password;
public function __construct(Identity $identity, string $password)
$this->identity = $identity;
$this->password = $password;
}
public function identity(): Identity
return $this->identity;
public function password(): string
return $this->password;