I'm getting this error and when I'm looking the ide its says
Unexpected: error silence
This is my code.
I'm just trying to make classmap.
class GetEntityLocation
{
/**
* @var integer
*/
@protected $Region_ID;
/**
* @var integer
*/
@protected $Match_ID;
/**
* GetEntityLocation constructor.
* @param integer $Region_ID
* @param integer $Match_ID
*/
public function __construct($Region_ID, $Match_ID)
{
$this->Region_ID = $Region_ID;
$this->Match_ID = $Match_ID;
}
/**
* @return integer
*/
public function getRegionID() {
return $this->Region_ID;
}
}