for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Platine\Framework\Demo\Form\Param;
class UserParam extends BaseParam
{
protected string $username = '';
protected string $lastname = '';
protected string $firstname = '';
protected string $password = '';
protected string $age = '';
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;
public function getLastname(): string
return $this->lastname;
public function getFirstname(): string
return $this->firstname;
public function getAge(): string
return $this->age;
public function setLastname(string $lastname): self
$this->lastname = $lastname;
public function setFirstname(string $firstname): self
$this->firstname = $firstname;
public function setAge(string $age): self
$this->age = $age;