Can I use if-statement like:
if(true) return $value;
Or must use always with braces:
if(true) {
return $value;
}
Can I use if-statement like:
if(true) return $value;
Or must use always with braces:
if(true) {
return $value;
}
Copyright © 2021 Jogjafile Inc.
Section 5.1 of the psr-2 standard explicitly states that:
So, according to psr-2, you must use braces for an
if
statement.