Fork me on GitHub
a Sensio Labs Product

I ate three cookies πŸͺ (v3.40.2) edition

Rule single_line_throwΒΆ

Throwing exception must be done in single line.

ExamplesΒΆ

Example #1ΒΆ

--- Original
+++ New
 <?php
-throw new Exception(
-    'Error.',
-    500
-);
+throw new Exception('Error.', 500);

Rule setsΒΆ

The rule is part of the following rule set:

Source classΒΆ

PhpCsFixer\Fixer\FunctionNotation\SingleLineThrowFixer