class Affiliates_Shortcodes {
    private $earnings;
    public static function affiliates_user_tree() {
echo $this->earnings;
        }   
    }
Getting error:
Fatal error: Uncaught Error: Using $this when not in object context
class Affiliates_Shortcodes {
    private $earnings;
    public static function affiliates_user_tree() {
echo $this->earnings;
        }   
    }
Getting error:
Fatal error: Uncaught Error: Using $this when not in object context
 
    
     
    
    Your method is declared as static. You can't use object properties within static methods. See http://php.net/manual/en/language.oop5.static.php
