for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Paysera\Bundle\ApiBundle\Entity;
class Violation
{
/**
* @var string
*/
private $field;
private $code;
private $message;
* @return null|string
public function getField()
return $this->field;
}
* @param string $field
*
* @return $this
public function setField($field)
$this->field = $field;
return $this;
public function getCode()
return $this->code;
* @param string $code
public function setCode($code)
$this->code = $code;
public function getMessage()
return $this->message;
* @param string $message
public function setMessage($message)
$this->message = $message;