The reason your code happens to work as is is because - is not a valid character within a variable name. PHP stops parsing the variable name at this boundary where it encounters the invalid variable name character. If you had tried to do this:
$this->path_medium = $this->PICTURES . "$this->file_hash2.jpg";
PHP would have thought $this->file_hash2 was the variable being referenced.
There are a couple of ways to approach this. My personal preference is to not enclose the variable in quotes at all, like this:
$this->path_medium = $this->PICTURES . $this->file_hash . '-2.jpg';
You can also use {} around the variable for readability:
$this->path_medium = $this->PICTURES . "{$this->file_hash}-2.jpg";