Closed renedekat closed 7 years ago
The $responseHasRoot variable was declared statically, but called non statically.
Since it's overridden in TaxService to be false I presumed it should be a non static variable. This gets rid of PHP warnings.
$responseHasRoot is supposed to be static. I can't find any instance where it was called non-statically. Your changes simply changed all instances of static to non-static without fixing anything.
$responseHasRoot
The $responseHasRoot variable was declared statically, but called non statically.
Since it's overridden in TaxService to be false I presumed it should be a non static variable. This gets rid of PHP warnings.