Passed
Pull Request — master (#41)
by Roman
03:37
created
RequestProcessor/Step/Common/PersistStep.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     {
28 28
         $entity = $this->getArtifact('entity');
29 29
 
30
-        if(true !== $this->getArtifact('validation')) {
30
+        if (true !== $this->getArtifact('validation')) {
31 31
             return new ArtifactCollection();
32 32
         }
33 33
 
Please login to merge, or discard this patch.
Tests/RequestProcessor/Step/Filter/ValidateFiltersTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
 
24 24
         $response = $step->execute($request);
25 25
         $this->assertInstanceOf(ArtifactCollection::class, $response);
26
-        $this->assertEquals([0 => ['type' => 'eq','property' => 'title','value' => 'test']], $response->get('filters')->getValue());
26
+        $this->assertEquals([0 => ['type' => 'eq', 'property' => 'title', 'value' => 'test']], $response->get('filters')->getValue());
27 27
     }
28 28
 }
Please login to merge, or discard this patch.