Is there a documentation about the psr standards for doc comments in php.
example:
/** @var string $str */
$str = "test";
/** @var array $arr */
$arr = [];
is this allowed or do I need to do it like this:
/** @var string $str */
$str = "test";
/** @var array $arr */
$arr = [];