Merge pull request #2861 from BeneficialName/php-fix-prop-name-as-var

[PHP] list_invalid_properties now don't call undefined variables
This commit is contained in:
wing328
2016-05-13 17:35:18 +08:00
7 changed files with 33 additions and 33 deletions

View File

@@ -139,7 +139,7 @@ class Animal implements ArrayAccess
{
$invalid_properties = array();
if ($this->container['class_name'] === null) {
$invalid_properties[] = "'$class_name' can't be null";
$invalid_properties[] = "'class_name' can't be null";
}
return $invalid_properties;
}

View File

@@ -174,15 +174,15 @@ class EnumTest implements ArrayAccess
$invalid_properties = array();
$allowed_values = array("UPPER", "lower");
if (!in_array($this->container['enum_string'], $allowed_values)) {
$invalid_properties[] = "invalid value for '$enum_string', must be one of #{allowed_values}.";
$invalid_properties[] = "invalid value for 'enum_string', must be one of #{allowed_values}.";
}
$allowed_values = array("1", "-1");
if (!in_array($this->container['enum_integer'], $allowed_values)) {
$invalid_properties[] = "invalid value for '$enum_integer', must be one of #{allowed_values}.";
$invalid_properties[] = "invalid value for 'enum_integer', must be one of #{allowed_values}.";
}
$allowed_values = array("1.1", "-1.2");
if (!in_array($this->container['enum_number'], $allowed_values)) {
$invalid_properties[] = "invalid value for '$enum_number', must be one of #{allowed_values}.";
$invalid_properties[] = "invalid value for 'enum_number', must be one of #{allowed_values}.";
}
return $invalid_properties;
}

View File

@@ -190,55 +190,55 @@ class FormatTest implements ArrayAccess
{
$invalid_properties = array();
if ($this->container['integer'] > 100.0) {
$invalid_properties[] = "invalid value for '$integer', must be smaller than or equal to 100.0.";
$invalid_properties[] = "invalid value for 'integer', must be smaller than or equal to 100.0.";
}
if ($this->container['integer'] < 10.0) {
$invalid_properties[] = "invalid value for '$integer', must be bigger than or equal to 10.0.";
$invalid_properties[] = "invalid value for 'integer', must be bigger than or equal to 10.0.";
}
if ($this->container['int32'] > 200.0) {
$invalid_properties[] = "invalid value for '$int32', must be smaller than or equal to 200.0.";
$invalid_properties[] = "invalid value for 'int32', must be smaller than or equal to 200.0.";
}
if ($this->container['int32'] < 20.0) {
$invalid_properties[] = "invalid value for '$int32', must be bigger than or equal to 20.0.";
$invalid_properties[] = "invalid value for 'int32', must be bigger than or equal to 20.0.";
}
if ($this->container['number'] === null) {
$invalid_properties[] = "'$number' can't be null";
$invalid_properties[] = "'number' can't be null";
}
if ($this->container['number'] > 543.2) {
$invalid_properties[] = "invalid value for '$number', must be smaller than or equal to 543.2.";
$invalid_properties[] = "invalid value for 'number', must be smaller than or equal to 543.2.";
}
if ($this->container['number'] < 32.1) {
$invalid_properties[] = "invalid value for '$number', must be bigger than or equal to 32.1.";
$invalid_properties[] = "invalid value for 'number', must be bigger than or equal to 32.1.";
}
if ($this->container['float'] > 987.6) {
$invalid_properties[] = "invalid value for '$float', must be smaller than or equal to 987.6.";
$invalid_properties[] = "invalid value for 'float', must be smaller than or equal to 987.6.";
}
if ($this->container['float'] < 54.3) {
$invalid_properties[] = "invalid value for '$float', must be bigger than or equal to 54.3.";
$invalid_properties[] = "invalid value for 'float', must be bigger than or equal to 54.3.";
}
if ($this->container['double'] > 123.4) {
$invalid_properties[] = "invalid value for '$double', must be smaller than or equal to 123.4.";
$invalid_properties[] = "invalid value for 'double', must be smaller than or equal to 123.4.";
}
if ($this->container['double'] < 67.8) {
$invalid_properties[] = "invalid value for '$double', must be bigger than or equal to 67.8.";
$invalid_properties[] = "invalid value for 'double', must be bigger than or equal to 67.8.";
}
if (!preg_match("/[a-z]/i", $this->container['string'])) {
$invalid_properties[] = "invalid value for '$string', must be conform to the pattern /[a-z]/i.";
$invalid_properties[] = "invalid value for 'string', must be conform to the pattern /[a-z]/i.";
}
if ($this->container['byte'] === null) {
$invalid_properties[] = "'$byte' can't be null";
$invalid_properties[] = "'byte' can't be null";
}
if ($this->container['date'] === null) {
$invalid_properties[] = "'$date' can't be null";
$invalid_properties[] = "'date' can't be null";
}
if ($this->container['password'] === null) {
$invalid_properties[] = "'$password' can't be null";
$invalid_properties[] = "'password' can't be null";
}
if (strlen($this->container['password']) > 64) {
$invalid_properties[] = "invalid value for '$password', the character length must be smaller than or equal to 64.";
$invalid_properties[] = "invalid value for 'password', the character length must be smaller than or equal to 64.";
}
if (strlen($this->container['password']) < 10) {
$invalid_properties[] = "invalid value for '$password', the character length must be bigger than or equal to 10.";
$invalid_properties[] = "invalid value for 'password', the character length must be bigger than or equal to 10.";
}
return $invalid_properties;
}

View File

@@ -145,7 +145,7 @@ class Name implements ArrayAccess
{
$invalid_properties = array();
if ($this->container['name'] === null) {
$invalid_properties[] = "'$name' can't be null";
$invalid_properties[] = "'name' can't be null";
}
return $invalid_properties;
}

View File

@@ -167,7 +167,7 @@ class Order implements ArrayAccess
$invalid_properties = array();
$allowed_values = array("placed", "approved", "delivered");
if (!in_array($this->container['status'], $allowed_values)) {
$invalid_properties[] = "invalid value for '$status', must be one of #{allowed_values}.";
$invalid_properties[] = "invalid value for 'status', must be one of #{allowed_values}.";
}
return $invalid_properties;
}

View File

@@ -166,14 +166,14 @@ class Pet implements ArrayAccess
{
$invalid_properties = array();
if ($this->container['name'] === null) {
$invalid_properties[] = "'$name' can't be null";
$invalid_properties[] = "'name' can't be null";
}
if ($this->container['photo_urls'] === null) {
$invalid_properties[] = "'$photo_urls' can't be null";
$invalid_properties[] = "'photo_urls' can't be null";
}
$allowed_values = array("available", "pending", "sold");
if (!in_array($this->container['status'], $allowed_values)) {
$invalid_properties[] = "invalid value for '$status', must be one of #{allowed_values}.";
$invalid_properties[] = "invalid value for 'status', must be one of #{allowed_values}.";
}
return $invalid_properties;
}