Skip to content

Commit 5bd3b72

Browse files
[Form] fix return type declarations
1 parent 30842ba commit 5bd3b72

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

PropertyPathBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public function getLength()
193193
/**
194194
* Returns the current property path.
195195
*
196-
* @return PropertyPathInterface The constructed property path
196+
* @return PropertyPathInterface|null The constructed property path
197197
*/
198198
public function getPropertyPath()
199199
{

PropertyPathInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function getLength();
4040
*
4141
* If this property path only contains one item, null is returned.
4242
*
43-
* @return PropertyPath|null The parent path or null
43+
* @return self|null The parent path or null
4444
*/
4545
public function getParent();
4646

0 commit comments

Comments
 (0)