for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Wallhaven;
/**
* User
*
* @package Wallhaven
*/
class User
{
* @var string Username.
private $username;
* @param string $username Username.
public function __construct($username)
$this->username = $username;
}
* @return string Username.
public function getUsername()
return $this->username;
public function __toString()