Passed
Push — master ( 310acb...1a0150 )
by Scott
02:48
created
src/functions/special/RunLambda.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Desmond\functions\special;
3 3
 use Desmond\functions\DesmondSpecialFunction;
4
-use Desmond\data_types\LambdaType;
5 4
 
6 5
 class RunLambda implements DesmondSpecialFunction
7 6
 {
Please login to merge, or discard this patch.
src/functions/special/Quasiquote.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,7 @@
 block discarded – undo
15 15
                 if ($element->value() == 'unquote') {
16 16
                     $newValue = $this->eval->getReturn($list->rest()[0]);
17 17
                     $list = $newValue;
18
-                }
19
-                else if ($element instanceof ListType && !empty($element->value())) {
18
+                } else if ($element instanceof ListType && !empty($element->value())) {
20 19
                     if ($element->first()->value() == 'unquote') {
21 20
                         $newValue = $this->eval->getReturn($element->rest()[0]);
22 21
                         $list->set($newValue, $index);
Please login to merge, or discard this patch.