for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dontdrinkandroot\RestBundle\Model;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @author Philip Washington Sorst <[email protected]>
*/
class UserCredentials
{
* @var string|null
private $username;
private $password;
public function getUsername(): ?string
return $this->username;
}
public function setUsername(?string $username)
$this->username = $username;
public function getPassword(): ?string
return $this->password;
public function setPassword(?string $password)
$this->password = $password;