Public static variable value

You can’t use expressions when declaring class properties. I.e. you can’t call something() here, you can only use static values. You’ll have to set those values differently in code at some point. Like any other PHP static variable, static properties may only be initialized using a literal or constant; expressions are not allowed. So while … Read more