Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 363 Bytes

not_operator_with_successor_space.rst

File metadata and controls

22 lines (16 loc) · 363 Bytes

Rule not_operator_with_successor_space

Logical NOT operators (!) should have one trailing whitespace.

Examples

Example #1

--- Original
+++ New
 <?php

-if (!$bar) {
+if (! $bar) {
     echo "Help!";
 }