@@ -9,10 +9,10 @@ |
||
9 | 9 | |
10 | 10 | class AccessorType extends Enum |
11 | 11 | { |
12 | - protected const Public = 'Public'; |
|
12 | + protected const public = 'Public'; |
|
13 | 13 | protected const Internal = 'Internal'; |
14 | - protected const Protected = 'Protected'; |
|
15 | - protected const Private = 'Private'; |
|
14 | + protected const protected = 'Protected'; |
|
15 | + protected const private = 'Private'; |
|
16 | 16 | |
17 | 17 | public static $cgNamespace = 'http://schemas.microsoft.com/ado/2006/04/codegeneration'; |
18 | 18 | } |
@@ -11,7 +11,7 @@ |
||
11 | 11 | { |
12 | 12 | public function getAttributeValue(): ?string; |
13 | 13 | |
14 | - public function getAttributeNullCheck(): bool ; |
|
14 | + public function getAttributeNullCheck(): bool; |
|
15 | 15 | |
16 | 16 | public function getAttributeForVersion(): OdataVersions; |
17 | 17 |