Completed
Push — master ( 175b65...c73746 )
by Alex
18s queued 15s
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/EdmApplyExpression.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     public function __construct($appliedFunction, IExpression ...$arguments)
36 36
     {
37 37
         assert($appliedFunction instanceof IFunction || $appliedFunction instanceof IExpression);
38
-        if($appliedFunction instanceof IFunction){
38
+        if ($appliedFunction instanceof IFunction) {
39 39
             $appliedFunction = new EdmFunctionReferenceExpression(EdmUtil::CheckArgumentNull($appliedFunction, "appliedFunction"));
40 40
         }
41 41
         assert($appliedFunction instanceof IExpression);
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.