Passed
Pull Request — master (#156)
by Alex
02:44
created
src/Library/Expressions/EdmIfExpression.php 1 patch
Spacing   +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/EdmPathExpression.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public function __construct(string ...$path)
28 28
     {
29
-        if(count($path) === 1){
29
+        if (count($path) === 1) {
30 30
             $path = explode('/', $path[]);
31 31
         }
32 32
         $this->path = $path;
Please login to merge, or discard this patch.