@@ -51,7 +51,7 @@ |
||
51 | 51 | $base = array_merge($base, $this->getAttributesHasFacets()); |
52 | 52 | } |
53 | 53 | if($type instanceof INominalType){ |
54 | - $base[] = New AttributeContainer("Type", $type->getName()); |
|
54 | + $base[] = new AttributeContainer("Type", $type->getName()); |
|
55 | 55 | } |
56 | 56 | return $base; |
57 | 57 | } |
@@ -8,10 +8,10 @@ |
||
8 | 8 | |
9 | 9 | class AccessorType extends Enum |
10 | 10 | { |
11 | - protected const Public = "Public"; |
|
11 | + protected const public = "Public"; |
|
12 | 12 | protected const Internal = "Internal"; |
13 | - protected const Protected = "Protected"; |
|
14 | - protected const Private = "Private"; |
|
13 | + protected const protected = "Protected"; |
|
14 | + protected const private = "Private"; |
|
15 | 15 | |
16 | 16 | public static $cgNamespace = "http://schemas.microsoft.com/ado/2006/04/codegeneration"; |
17 | 17 | } |
18 | 18 | \ No newline at end of file |