If I am using a constant that is needed only in a method, is it best to declare the const within the method scope, or in the class scope? Is there better pe
I would put it in the method itself. I'm not a fan of variables that hang around in scope when they don't need to be there.