Coding Guidelines

PHP

// Wrong
if (!$expr) {
    ...
}

// Good
if (false === $expr) {
    ...
}

Front-End