rspec/rules/S3984/php/rule.adoc

16 lines
298 B
Plaintext
Raw Normal View History

2021-01-27 13:42:22 +01:00
Creating a new ``++Exception++`` without actually throwing it is useless and is probably due to a mistake.
2020-06-30 12:48:39 +02:00
== Noncompliant Code Example
----
if ($x < 0)
new Exception('$x must be nonnegative');
----
== Compliant Solution
----
if ($x < 0)
throw new Exception('$x must be nonnegative');
----