EmptyStatementSniff.php
This sniff class detected empty statement.
This sniff implements the common algorithm for empty statement body detection. A body is considered as empty if it is completely empty or it only contains whitespace characters and/or comments.
stmt {
// foo
}
stmt (conditions) {
// foo
}