Can I use if statement like:
if (!true) {
return false
}
Or something like this:
if (! true) {
return false
}
Can I use if statement like:
if (!true) {
return false
}
Or something like this:
if (! true) {
return false
}
Copyright © 2021 Jogjafile Inc.
According to PSR example all conditions in
ifclauses have no space before or after the expressions. In your case thenwould be a case. Remember that with short expressions you can always use ternary operator and if you have complex condition to be checked, consider to put it into variable.