I can't find out, or maybe I am thinking wrongly but I need to make a variable that can't be changed, like read-only, something like :
final $finalVar = 'extremely secret number'; // don't change
$finalVar = 'hacked...'; // THROW I GIANT BIG ERROR HERE !
Aside from constants (as mentioned in comments), the only way I can think of to do this is to use a parent-child relationship with a
private
variableNote that there's a hacky way around that using the Reflection class. But, for the most part, you can't touch a
private
parent variable from a child class