for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the MsalsasVotingBundle package.
*
* (c) Manolo Salsas
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Msalsas\VotingBundle\Entity;
use Msalsas\VotingBundle\Entity\Vote\AbstractVote;
class VoteNegative extends AbstractVote
{
/**
* @var string
protected $reason;
* @return string
public function getReason(): string
return $this->reason;
}
* @param string $reason
public function setReason(string $reason)
$this->reason = $reason;