Skip to content

Files

Latest commit

 

History

History
12 lines (7 loc) · 582 Bytes

WordPress.PHP.YodaConditions.md

File metadata and controls

12 lines (7 loc) · 582 Bytes

Pattern: Missing use of Yoda condition

Issue: -

Description

When doing logical comparisons involving variables, always put the variable on the right side and put constants, literals, or function calls on the left side. If neither side is a variable, the order is not important.

Further Reading