Failed Conditions
Pull Request — master (#44)
by Alex
03:10
created
src/Edm/Validation/Internal/InterfaceValidator/VisitorOfISchemaElement.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
                 );
34 34
                 break;
35 35
 
36
-            case SchemaElementKind::Function():
36
+            case SchemaElementKind::function():
37 37
                 InterfaceValidator::CollectErrors(
38 38
                     InterfaceValidator::CheckForInterfaceKindValueMismatchError(
39 39
                         $item,
Please login to merge, or discard this patch.
src/Edm/Validation/Internal/InterfaceValidator/VisitorOfIExpression.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
                     );
135 135
                     break;
136 136
 
137
-                case ExpressionKind::Null():
137
+                case ExpressionKind::null():
138 138
                     $expressionKindError = InterfaceValidator::CheckForInterfaceKindValueMismatchError(
139 139
                         $expression,
140 140
                         $expression->getExpressionKind(),
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
                     );
225 225
                     break;
226 226
 
227
-                case ExpressionKind::If():
227
+                case ExpressionKind::if():
228 228
                     $expressionKindError = InterfaceValidator::CheckForInterfaceKindValueMismatchError(
229 229
                         $expression,
230 230
                         $expression->getExpressionKind(),
Please login to merge, or discard this patch.