Passed
Pull Request — master (#44)
by Alex
02:51
created
src/Library/Core/EdmCoreModel.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
     /**
168 168
      * @return string gets the namespace of this core model
169 169
      */
170
-    public static function Namespace(): string
170
+    public static function namespace(): string
171 171
     {
172 172
         return 'Edm';
173 173
     }
Please login to merge, or discard this patch.
src/Library/EdmFunction.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
      */
49 49
     public function getSchemaElementKind(): SchemaElementKind
50 50
     {
51
-        return SchemaElementKind::Function();
51
+        return SchemaElementKind::function();
52 52
     }
53 53
 
54 54
     /**
Please login to merge, or discard this patch.
src/Library/Values/EdmNullExpression.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function getExpressionKind(): ExpressionKind
44 44
     {
45
-        return ExpressionKind::Null();
45
+        return ExpressionKind::null();
46 46
     }
47 47
 
48 48
     /**
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      */
51 51
     public function getValueKind(): ValueKind
52 52
     {
53
-        return ValueKind::Null();
53
+        return ValueKind::null();
54 54
     }
55 55
 
56 56
     /**
Please login to merge, or discard this patch.
src/ModelVisitorConcerns/VisitExpressions.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
                 assert($expression instanceof  IGuidConstantExpression);
105 105
                 $this->processGuidConstantExpression($expression);
106 106
                 break;
107
-            case ExpressionKind::If():
107
+            case ExpressionKind::if():
108 108
                 assert($expression instanceof  IIfExpression);
109 109
                 $this->processIfExpression($expression);
110 110
                 break;
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
                 assert($expression instanceof  ILabeledExpression);
129 129
                 $this->processLabeledExpression($expression);
130 130
                 break;
131
-            case ExpressionKind::Null():
131
+            case ExpressionKind::null():
132 132
                 assert($expression instanceof  INullExpression);
133 133
                 $this->processNullConstantExpression($expression);
134 134
                 break;
Please login to merge, or discard this patch.
src/Enums/ValueKind.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     protected const Floating      =8;
41 41
     protected const Guid          =9;
42 42
     protected const Integer       =10;
43
-    protected const Null          =11;
43
+    protected const null          =11;
44 44
     protected const String        =12;
45 45
     protected const Structured    =13;
46 46
     protected const Time          =14;
Please login to merge, or discard this patch.
src/Enums/SchemaElementKind.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 {
27 27
     protected const None            = null;
28 28
     protected const TypeDefinition  = 'SchemaType';
29
-    protected const Function        = 'Function';
29
+    protected const function        = 'Function';
30 30
     protected const ValueTerm       = 'ValueTerm';
31 31
     protected const EntityContainer = 'EntityContainer';
32 32
 }
Please login to merge, or discard this patch.
src/Enums/ExpressionKind.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     protected const IntegerConstant             = 8;
80 80
     protected const StringConstant              = 9;
81 81
     protected const TimeConstant                = 10;
82
-    protected const Null                        = 11;
82
+    protected const null                        = 11;
83 83
     protected const Record                      = 12;
84 84
     protected const Collection                  = 14;
85 85
     protected const Path                        = 15;
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     protected const ValueTermReference          = 19;
90 90
     protected const EntitySetReference          = 20;
91 91
     protected const EnumMemberReference         = 21;
92
-    protected const If                          = 22;
92
+    protected const if                          = 22;
93 93
     protected const AssertType                  = 23;
94 94
     protected const IsType                      = 24;
95 95
     protected const FunctionApplication         = 25;
Please login to merge, or discard this patch.
src/Util/ExpressionTypeChecker.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
                     );
173 173
                 }
174 174
                 return self::TryAssertPrimitiveAsType($primitiveValue, $type, $discoveredErrors);
175
-            case ExpressionKind::Null():
175
+            case ExpressionKind::null():
176 176
                 assert($expression instanceof INullExpression);
177 177
                 return self::TryAssertNullAsType($expression, $type, $discoveredErrors);
178 178
             case ExpressionKind::Path():
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
                 // If we don't have the applied function we just assume that it will work.
198 198
                 $discoveredErrors = [];
199 199
                 return true;
200
-            case ExpressionKind::If():
200
+            case ExpressionKind::if():
201 201
                 assert($expression instanceof IIfExpression);
202 202
                 return self::TryAssertIfAsType($expression, $type, $context, $matchExactly, $discoveredErrors);
203 203
             case ExpressionKind::IsType():
Please login to merge, or discard this patch.
src/Internal/RegistrationHelper.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     ) {
48 48
         $qualifiedName = $element->FullName();
49 49
         switch ($element->getSchemaElementKind()) {
50
-            case SchemaElementKind::Function():
50
+            case SchemaElementKind::function():
51 51
                 assert($element instanceof IFunction);
52 52
                 self::AddFunction($element, $qualifiedName, $functionGroupDictionary);
53 53
                 break;
Please login to merge, or discard this patch.