diff --git a/src/models/jsonld/EnumerationTrait.php b/src/models/jsonld/EnumerationTrait.php index 436bbdd06..5542e0026 100644 --- a/src/models/jsonld/EnumerationTrait.php +++ b/src/models/jsonld/EnumerationTrait.php @@ -25,7 +25,7 @@ trait EnumerationTrait * Relates a term (i.e. a property, class or enumeration) to one that * supersedes it. * - * @var Class|Property|Enumeration + * @var SchemaClass|Property|Enumeration */ public $supersededBy; } diff --git a/src/models/jsonld/PropertyTrait.php b/src/models/jsonld/PropertyTrait.php index 382a76ccf..7eac0d732 100644 --- a/src/models/jsonld/PropertyTrait.php +++ b/src/models/jsonld/PropertyTrait.php @@ -25,7 +25,7 @@ trait PropertyTrait * Relates a term (i.e. a property, class or enumeration) to one that * supersedes it. * - * @var Class|Property|Enumeration + * @var SchemaClass|Property|Enumeration */ public $supersededBy; @@ -33,7 +33,7 @@ trait PropertyTrait * Relates a property to a class that is (one of) the type(s) the property is * expected to be used on. * - * @var Class + * @var SchemaClass */ public $domainIncludes; @@ -52,7 +52,7 @@ trait PropertyTrait * Relates a property to a class that constitutes (one of) the expected * type(s) for values of the property. * - * @var Class + * @var SchemaClass */ public $rangeIncludes; } diff --git a/src/models/jsonld/SchemaClassTrait.php b/src/models/jsonld/SchemaClassTrait.php index 42ffea9c9..08e21f8bb 100644 --- a/src/models/jsonld/SchemaClassTrait.php +++ b/src/models/jsonld/SchemaClassTrait.php @@ -25,7 +25,7 @@ trait SchemaClassTrait * Relates a term (i.e. a property, class or enumeration) to one that * supersedes it. * - * @var Class|Property|Enumeration + * @var SchemaClass|Property|Enumeration */ public $supersededBy; } diff --git a/src/models/jsonld/StatisticalPopulationTrait.php b/src/models/jsonld/StatisticalPopulationTrait.php index 745460dce..cc5f08c9d 100644 --- a/src/models/jsonld/StatisticalPopulationTrait.php +++ b/src/models/jsonld/StatisticalPopulationTrait.php @@ -34,7 +34,7 @@ trait StatisticalPopulationTrait * Indicates the populationType common to all members of a * [[StatisticalPopulation]]. * - * @var Class + * @var SchemaClass */ public $populationType;