You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Property with type | Must be nullable with default value set (null preferred) |`public ?int $id = null;`|
50
-
| Property without type | No need to set default value |`public $id;`|
51
-
| Protected/Private property | Must have getter and setter public methods |`protected ?int $id = null;`<br>`public function getId(): ?int {...};`<br>`public function setId(?int $id): void {...};`|
47
+
| Property Characteristic | Requirement | Example |
| Property with type | Must be nullable with default value set (null preferred) |`public ?int $id = null;`|
50
+
| Property without type | No need to set default value |`public $id;`|
51
+
| Protected/Private property | Must have getter and setter public methods |`protected ?int $id = null;`<br />`public function getId(): ?int {...};`<br />`public function setId(?int $id): void {...};`|
0 commit comments