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;
public function getUsername(): string
return $this->username;
}
public function setUsername(string $username): self
$this->username = $username;
return $this;