Passed
Branch master (6e4050)
by Scott
02:58
created
src/functions/core/DotFunc.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 use Desmond\functions\DesmondFunction;
4 4
 use Desmond\ArgumentHelper;
5 5
 use Desmond\TypeHelper;
6
-use Desmond\data_types\VectorType;
7 6
 use Desmond\exceptions\ArgumentException;
8 7
 use RuntimeException;
9 8
 use ArgumentCountError;
Please login to merge, or discard this patch.
src/data_types/LambdaType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $this->saveCurrentEnvironment();
33 33
         $this->useCreationEnvironment();
34 34
         $this->createChildEnvironment();
35
-        for ($i=0; $i<$this->args->count(); $i++) {
35
+        for ($i = 0; $i < $this->args->count(); $i++) {
36 36
             $this->functionEnv->set(
37 37
                 $this->args->get($i)->value(), $params[$i]);
38 38
         }
Please login to merge, or discard this patch.