Completed
Push — master ( 175b65...c73746 )
by Alex
18s queued 15s
created
src/Library/Expressions/EdmIfExpression.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
     public function getExpressionKind(): ExpressionKind
49 49
     {
50
-        return ExpressionKind::If();
50
+        return ExpressionKind::if();
51 51
     }
52 52
 
53 53
     /**
Please login to merge, or discard this patch.
src/Library/Expressions/EdmNullExpression.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function getValueKind(): ValueKind
32 32
     {
33
-        return ValueKind::Null();
33
+        return ValueKind::null();
34 34
     }
35 35
 
36 36
     /**
@@ -38,6 +38,6 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public function getExpressionKind(): ExpressionKind
40 40
     {
41
-        return ExpressionKind::Null();
41
+        return ExpressionKind::null();
42 42
     }
43 43
 }
44 44
\ No newline at end of file
Please login to merge, or discard this patch.