Do you always put all the property declarations in...
# codingconventions
a
Do you always put all the property declarations in a class before any method declaration, or do you make exceptions (like a property used in just one method further down)?
s
I personally prefer grouping all properties together and then all methods underneath.
h
I prefer them all at the top as well.