Test Failed
Pull Request — master (#154)
by Alex
09:09
created
src/MetadataV3/edm/Concerns/HasType.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/MetadataV3/AccessorType.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@
 block discarded – undo
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
Please login to merge, or discard this patch.