Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 699 Bytes

new_with_braces.rst

File metadata and controls

32 lines (22 loc) · 699 Bytes

Rule new_with_braces

All instances created with new keyword must be followed by braces.

Examples

Example #1

--- Original
+++ New
-<?php $x = new X;
+<?php $x = new X();

Rule sets

The rule is part of the following rule sets:

@PSR12

Using the @PSR12 rule set will enable the new_with_braces rule.

@PhpCsFixer

Using the @PhpCsFixer rule set will enable the new_with_braces rule.

@Symfony

Using the @Symfony rule set will enable the new_with_braces rule.