Skip to content

Commit

Permalink
Merge pull request #8023 from MidnightDesign/patch-1
Browse files Browse the repository at this point in the history
Fix a typo in MissingConstructor.md
  • Loading branch information
orklah committed May 27, 2022
2 parents b46fb14 + 6f00a72 commit 430e1ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/running_psalm/issues/MissingConstructor.md
Expand Up @@ -10,7 +10,7 @@ Doing that allows it to report missing initializations as well as [RedundantProp

This issue is emitted when non-null properties without default values are defined in a class without a `__construct` method

If your project rely on having uninitialized properties, it is advised to suppress this issue, as well as [PropertyNotSetInConstructor](./PropertyNotSetInConstructor.md) and [RedundantPropertyInitializationCheck](./RedundantPropertyInitializationCheck.md).
If your project relies on having uninitialized properties, it is advised to suppress this issue, as well as [PropertyNotSetInConstructor](./PropertyNotSetInConstructor.md) and [RedundantPropertyInitializationCheck](./RedundantPropertyInitializationCheck.md).

```php
<?php
Expand Down

0 comments on commit 430e1ee

Please sign in to comment.