Open TysonAndre opened 6 years ago
E.g.
/** * @param array $x * @param int|string $y * @param mixed $default * @template-analyze-like-codesnippet {$x[$y] ?? $default} */ function coalesce_substitute($x, $y, $default) { return $x[$y] ?? $default; }
E.g.