is_a() is deprecated, use instanceof instead !
There are 5 matches in Consumer.php and 9 matches in Server.php. 1 match in AX.php. They should all be replaced by instanceof operator as of PHP 5.
This currently results in strict errors.
it was undeprecated in 5.3.0. though, in most cases, instanceof is definitely preferred way of doing things
Using instanceof still allows things to work in PHP 5.2; we develop with strict standards and throw Exceptions on any warnings or errors, so this makes things difficult. It's a five minute job to replace them all and you gain 5.2 and 5.3 compatibility.
This repo is being archived. Closing issue.