[php] Deprecated annotation on operations and fields (#10085)

This commit is contained in:
Nathan Baulch
2021-08-04 19:29:19 +10:00
committed by GitHub
parent dc23267580
commit ca5de9d503
22 changed files with 82 additions and 35 deletions

View File

@@ -13,12 +13,15 @@ class ObjectWithDeprecatedFields {
private $uuid;
/** @var float $id */
/** @deprecated */
private $id;
/** @var \app\Models\DeprecatedObject $deprecatedRef */
/** @deprecated */
private $deprecatedRef;
/** @var string[] $bars */
/** @deprecated */
private $bars;
}