We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the following method
public function foo(Collection $collection) { $collection->add($this->bar); $collection->add($this->bar); if ($collection instanceof BOOM) { $collection->add($this->some) } }
which reports an error because I didn't use an early exit.
But changing
if ($collection instanceof BOOM) { $collection->add($this->some) }
to
if (! $collection instanceof BOOM) { return; } $collection->add($this->some)
is taking more lines and not really reducing complexity.
Also, I may change later to
public function foo(Collection $collection) { $collection->add($this->bar); $collection->add($this->bar); if ($collection instanceof Boom) { $collection->add($this->some) } if ($collection instanceof Please) { $collection->add($this->thanks) } }
and so on.
The slevomat Early Exit standard has some configuration available https://github.com/slevomat/coding-standard/blob/master/doc/control-structures.md#slevomatcodingstandardcontrolstructuresearlyexit-
I would say it's better to use some.
The text was updated successfully, but these errors were encountered:
I had no idea it had any configuration. Right now I do this 🙃
public function foo(Collection $collection) { $collection->add($this->bar); $collection->add($this->bar); if ($collection instanceof BOOM) { $collection->add($this->some) } return; }
Sorry, something went wrong.
I just want to add that the default configuration is insane. Specifically because:
if ($collection instanceof Boom) { $collection->add($this->some); } if ($collection instanceof Please) { $collection->add($this->thanks); }
if ($collection instanceof Boom) { $collection->add($this->some); } if (! $collection instanceof Please) { return; } $collection->add($this->thanks);
I wasn't aware of the configuration up until today. Would be happy if some sane configuration was applied (e.g. ignoreTrailingIfWithOneInstruction).
ignoreTrailingIfWithOneInstruction
No branches or pull requests
I have the following method
which reports an error because I didn't use an early exit.
But changing
to
is taking more lines and not really reducing complexity.
Also, I may change later to
and so on.
The slevomat Early Exit standard has some configuration available
https://github.com/slevomat/coding-standard/blob/master/doc/control-structures.md#slevomatcodingstandardcontrolstructuresearlyexit-
I would say it's better to use some.
The text was updated successfully, but these errors were encountered: