Passed
Pull Request — master (#44)
by Alex
03:24
created
src/Edm/Validation/Internal/ValidationHelper.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,7 @@
 block discarded – undo
41 41
         EdmErrorCode $errorCode,
42 42
         string $errorString,
43 43
         bool $suppressError
44
-    )
45
-    {
44
+    ) {
46 45
         $name = $item instanceof ISchemaElement ? $item->FullName() : $item->getName();
47 46
         if ($memberNameList->add($name)) {
48 47
             if (!$suppressError) {
Please login to merge, or discard this patch.
src/Edm/Validation/Internal/InterfaceValidator/VisitorOfIExpression.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,9 @@
 block discarded – undo
61 61
         $this->lookup[ExpressionKind::ValueTermReference()->getValue()] = IValueTermReferenceExpression::class;
62 62
         $this->lookup[ExpressionKind::EntitySetReference()->getValue()] = IEntitySetReferenceExpression::class;
63 63
         $this->lookup[ExpressionKind::EnumMemberReference()->getValue()] = IEnumMemberReferenceExpression::class;
64
-        $this->lookup[ExpressionKind::If()->getValue()] = IIfExpression::class;
64
+        $this->lookup[ExpressionKind::If() {
65
+            ->getValue()] = IIfExpression::class;
66
+        }
65 67
         $this->lookup[ExpressionKind::AssertType()->getValue()] = IAssertTypeExpression::class;
66 68
         $this->lookup[ExpressionKind::IsType()->getValue()] = IIsTypeExpression::class;
67 69
         $this->lookup[ExpressionKind::FunctionApplication()->getValue()] = IApplyExpression::class;
Please login to merge, or discard this patch.