Skip to content

Commit dfec359

Browse files
committed
Fixes.
1 parent c4b1ace commit dfec359

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

src/InlineValueContext.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ class InlineValueContext
1616

1717
/**
1818
* The document range where execution has stopped.
19-
* Typically the end position of the range denotes the line where the
20-
* inline values are shown.
19+
* Typically the end position of the range denotes the line where the
20+
* inline values are shown.
2121
*
2222
* @var Range|null
2323
*/
@@ -31,6 +31,7 @@ public function __construct(?int $frameId = null, ?\LanguageServerProtocol\Range
3131
{
3232
/** @psalm-suppress PossiblyNullPropertyAssignmentValue */
3333
$this->frameId = $frameId;
34+
/** @psalm-suppress PossiblyNullPropertyAssignmentValue */
3435
$this->stoppedLocation = $stoppedLocation;
3536
}
3637
}

src/InlineValueEvaluatableExpression.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ class InlineValueEvaluatableExpression
1616
{
1717
/**
1818
* The document range for which the inline value applies.
19-
* The range is used to extract the evaluatable expression from the
20-
* underlying document.
19+
* The range is used to extract the evaluatable expression from the
20+
* underlying document.
2121
*
2222
* @var Range|null
2323
*/
2424
public $range;
2525

2626
/**
2727
* If specified the expression overrides the extracted expression.
28-
*
28+
*
2929
* @var string|null
3030
*/
3131
public $expression;

src/InlineValueText.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* Provide inline value as text.
7-
*
7+
*
88
* @since 3.17.0
99
*/
1010
class InlineValueText
@@ -18,7 +18,7 @@ class InlineValueText
1818

1919
/**
2020
* The text of the inline value.
21-
*
21+
*
2222
* @var string|null
2323
*/
2424
public $text;
@@ -31,6 +31,7 @@ public function __construct(?\LanguageServerProtocol\Range $range = null, ?strin
3131
{
3232
/** @psalm-suppress PossiblyNullPropertyAssignmentValue */
3333
$this->range = $range;
34+
/** @psalm-suppress PossiblyNullPropertyAssignmentValue */
3435
$this->text = $text;
3536
}
3637
}

src/InlineValueVariableLookup.php

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,23 @@ class InlineValueVariableLookup
1616
{
1717
/**
1818
* The document range for which the inline value applies.
19-
* The range is used to extract the variable name from the underlying
20-
* document.
19+
* The range is used to extract the variable name from the underlying
20+
* document.
2121
*
2222
* @var Range|null
2323
*/
2424
public $range;
2525

2626
/**
2727
* If specified the name of the variable to look up.
28-
*
28+
*
2929
* @var string|null
3030
*/
3131
public $variableName;
3232

3333
/**
3434
* How to perform the lookup.
35-
*
35+
*
3636
* @var bool|null
3737
*/
3838
public $caseSensitiveLookup;
@@ -50,6 +50,7 @@ public function __construct(
5050
/** @psalm-suppress PossiblyNullPropertyAssignmentValue */
5151
$this->range = $range;
5252
$this->variableName = $variableName;
53+
/** @psalm-suppress PossiblyNullPropertyAssignmentValue */
5354
$this->caseSensitiveLookup = $caseSensitiveLookup;
5455
}
5556
}

0 commit comments

Comments
 (0)