Lets suppose i have a class & i have to set instance variable from inside the callback.
class A{
protected $user;
public __construct(){
/* Some function here which accept callback */
StoreData(['name'=>'Stackoverflow'],function($response){
//how to assign value to $user here???
});
}
}