Are Laravel facades dependencies?
问题 I have read that there should be not too much dependencies to one class. In one book, it states that 4 dependencies might be a sign that class might be doing too much. Lets say I have written a class which uses 10 dependencies: 6 classes and 4 facades. Should I care only about those 6 classes and split them, or care about 4 facades too? If somebody want to know how I get so many facades: use Input; use App; use Session; use Log; Those all are needed often. I have heard question - why do I