Is it possible to allow accessing private variables and members for debugging purpose.
Because, currently I am using GRPC and Protobuff
in my PHP code. And when I try to dump or debug objects for GRPC communication I always get the following error
Fatal error: Cannot access private properties. in
And as a result I am not able to debug my application properly.
Please suggest what to do in that case