Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 784 Bytes

no_null_property_initialization.rst

File metadata and controls

43 lines (32 loc) · 784 Bytes

Rule no_null_property_initialization

Properties MUST not be explicitly initialized with null except when they have a type declaration (PHP 7.4).

Examples

Example #1

--- Original
+++ New
 <?php
 class Foo {
-    public $foo = null;
+    public $foo;
 }

Example #2

--- Original
+++ New
 <?php
 class Foo {
-    public static $foo = null;
+    public static $foo;
 }

Rule sets

The rule is part of the following rule set:

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