rangka / quickbooks

PHP Library for connecting to QuickBooks.
MIT License
8 stars 11 forks source link

Fixed calling static variable non statically #18

Closed renedekat closed 7 years ago

renedekat commented 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.

khairulashraff commented 7 years ago

$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.