Due to some ridiculousness in the PHP version history, the is_a function is deprecated from 5.0 until 5.3 when they un-deprecated it. 😕
Thanks to this, users still on PHP 5.2x would trigger some warnings when running the updater. It also looks like instanceof is a little better on performance anyway, so it's probably worth swapping out.
PR inbound.
Due to some ridiculousness in the PHP version history, the
is_afunction is deprecated from5.0until5.3when they un-deprecated it. 😕Thanks to this, users still on PHP 5.2x would trigger some warnings when running the updater. It also looks like
instanceofis a little better on performance anyway, so it's probably worth swapping out.PR inbound.