@@ -470,20 +470,20 @@ |
||
470 | 470 | } |
471 | 471 | foreach ($this->getProperty() as $prop) { |
472 | 472 | if (in_array($prop->getName(), $pArray)) { |
473 | - $msg = "Property Names, Key Names, and Navigation Property Must Be Unique " . _CLASS__; |
|
473 | + $msg = "Property Names, Key Names, and Navigation Property Must Be Unique "._CLASS__; |
|
474 | 474 | return false; |
475 | 475 | } |
476 | 476 | $pArray[] = $prop->getName(); |
477 | 477 | } |
478 | 478 | foreach ($this->getNavigationProperty() as $prop) { |
479 | 479 | if (in_array($prop->getName(), $pArray)) { |
480 | - $msg = "Property Names, Key Names, and Navigation Property Must Be Unique " . _CLASS__; |
|
480 | + $msg = "Property Names, Key Names, and Navigation Property Must Be Unique "._CLASS__; |
|
481 | 481 | return false; |
482 | 482 | } |
483 | 483 | $pArray[] = $prop->getName(); |
484 | 484 | } |
485 | 485 | if (in_array($this->getName(), $prop)) { |
486 | - $msg = "entity types can not contain a property with the same name " . _CLASS__; |
|
486 | + $msg = "entity types can not contain a property with the same name "._CLASS__; |
|
487 | 487 | return false; |
488 | 488 | } |
489 | 489 | return true; |