for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace eXpansion\Bundle\MxKarma\Entity;
class MxVote
{
/** @var string */
public $login;
public $nickname;
/** @var integer */
public $vote;
public function __construct($obj)
$this->login = $obj->login;
$this->vote = (int)$obj->vote;
}