Skip to content

Instantly share code, notes, and snippets.

@intarstudents
Created July 23, 2012 07:15
Show Gist options
  • Save intarstudents/3162395 to your computer and use it in GitHub Desktop.
Save intarstudents/3162395 to your computer and use it in GitHub Desktop.
Non-static method PEAR::isError() should not be called statically

/usr/local/lib/php/PEAR.php

static function isError($data, $code = null)
    {   
        if (!is_a($data, 'PEAR_Error')) {
            return false;
        }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment