It's impossible to override the class when helper methods such as getResponse() are marked as "private" because they are called by so many public methods.
This changes the 4 private members that exist in the class to protected so that developers can extend the class.
It's impossible to override the class when helper methods such as getResponse() are marked as "private" because they are called by so many public methods.
This changes the 4 private members that exist in the class to protected so that developers can extend the class.
Thanks!