Psalm stdClass with properties definition anotation error

76 Views Asked by At

What is the correct returning object definition in psalm?

/** 
 * @psalm-return \stdClass{foo?: string}
 */
function returnObject(): \stdClass {
 $item2 = new \stdClass();
 $item2->foo = "asd";
    return $item2;
}

returnObject();

ERROR: InvalidDocblock - 19:1 - Unexpected brace character in docblock for returnObject

sandbox

2

There are 2 best solutions below

2
On

The syntax you are using is not supported:

/** 
 * @psalm-return \stdClass{foo?: string}
 */

You should only indicate the type, followed by an optional description:

/** 
 * @psalm-return \stdClass Returns an object with the foo property set.
 */
0
On

You can do this with object, but you can't do this with any named class, including stdClass:

<?php
/** 
 * @psalm-return object{foo?: string}
 */
function returnObject(): object {
    $item2 = new stdClass();
    $item2->foo = "asd";
    return $item2;
}

$_v = returnObject();
/** @psalm-trace $_v */;
Psalm output (using commit 73ebe22): 

INFO: Trace - 12:24 - $_v: object{foo?:string}