for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SumoCoders\FrameworkMultiUserBundle\Form;
class User
{
/**
* @var string
*/
private $userName;
private $displayName;
* User constructor.
*
* @param string|null $userName
* @param string|null $displayName
public function __construct($userName = null, $displayName = null)
$this->userName = $userName;
$this->displayName = $displayName;
}
public function getUserName()
return $this->userName;
public function getDisplayName()
return $this->displayName;
public function setUserName($userName)
public function setDisplayName($displayName)