# ReferenceReusedFromConfusingScope Emitted when a reference assigned in a potentially confusing scope is reused later. Since PHP doesn't scope loops and ifs the same way most other languages do, a common issue is the reuse of a variable declared in such a scope. Usually it doesn't matter, because a reassignment to an already-defined variable will just reassign it, but if the already-defined variable is a reference it will change the value of the referred to variable. ```php