@@ -20,7 +20,7 @@ |
||
| 20 | 20 | * |
| 21 | 21 | * @var int|false|null |
| 22 | 22 | */ |
| 23 | - private int|false|null $docCommentPos = false; |
|
| 23 | + private int | false | null $docCommentPos = false; |
|
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | 26 | * The used doc Helper. |
@@ -25,28 +25,28 @@ |
||
| 25 | 25 | * |
| 26 | 26 | * @var File|null |
| 27 | 27 | */ |
| 28 | - protected File|null $file = null; |
|
| 28 | + protected File | null $file = null; |
|
| 29 | 29 | |
| 30 | 30 | /** |
| 31 | 31 | * Position of the listened token. |
| 32 | 32 | * |
| 33 | 33 | * @var int|null |
| 34 | 34 | */ |
| 35 | - protected int|null $stackPos = 0; |
|
| 35 | + protected int | null $stackPos = 0; |
|
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | 38 | * The used token. |
| 39 | 39 | * |
| 40 | 40 | * @var array|null |
| 41 | 41 | */ |
| 42 | - protected array|null $token = null; |
|
| 42 | + protected array | null $token = null; |
|
| 43 | 43 | |
| 44 | 44 | /** |
| 45 | 45 | * All tokens of the class. |
| 46 | 46 | * |
| 47 | 47 | * @var array|null The tokens of the class. |
| 48 | 48 | */ |
| 49 | - protected array|null $tokens = null; |
|
| 49 | + protected array | null $tokens = null; |
|
| 50 | 50 | |
| 51 | 51 | /** |
| 52 | 52 | * Returns true if the requirements for this sniff are met. |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | * |
| 24 | 24 | * @var int|null|false If false then it will be loaded in the getter. |
| 25 | 25 | */ |
| 26 | - private int|false|null $blockEndPosition = false; |
|
| 26 | + private int | false | null $blockEndPosition = false; |
|
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * The php cs file. |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | |
| 18 | 18 | public const CODE_MIXED_TYPE = 'MixedType'; |
| 19 | 19 | |
| 20 | - private const MESSAGE_MIXED_TYPE = 'We suggest that you avoid the "mixed" type and declare the ' . |
|
| 20 | + private const MESSAGE_MIXED_TYPE = 'We suggest that you avoid the "mixed" type and declare the '. |
|
| 21 | 21 | 'required types in detail.'; |
| 22 | 22 | |
| 23 | 23 | private function isMixedTypeHint(): bool |