for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Platine\Framework\Demo\Form\Param;
class AuthParam extends BaseParam
{
protected string $username = '';
protected string $password = '';
public function getUsername(): string
return $this->username;
}
public function setUsername(string $username): self
$this->username = $username;
return $this;
public function getPassword(): string
return $this->password;
public function setPassword(string $password): self
$this->password = $password;