Update allOf to not always be nullable (#12861)

* added nonNullableVars

* added return property to operation

* added return property to operation

* build samples

* added inner enum

* build samples

* allOf no longer always nullable

* added a comment
This commit is contained in:
devhl-labs
2022-08-15 12:47:51 -04:00
committed by GitHub
parent 17f9a28093
commit 7e4fa70067
12 changed files with 33 additions and 86 deletions

View File

@@ -12,7 +12,7 @@ class AllOfWithSingleRef {
/** @var string $username */
public $username = "";
/** @var SingleRefType|null $singleRefType */
public $singleRefType = null;
/** @var SingleRefType $singleRefType */
public $singleRefType;
}