Question

For the following scenario, it didn't work for me. Is there a way to fix it?

class A {
  public static V_A = 'setting_a';
  ...
}

class B {
  public static V_B = A::$V_A;
}
Was it helpful?

Solution

As an answer to my own question - I needed up yanked the static variable V_B in class B, introduced a static function to return the value of A::$V_A, and replace B::$V_B with the function everywhere the static variable is referenced. Essentially, it's what @Abkik suggested.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top