Completed
Push — master ( f1e4e4...a4140d )
by Ivannis Suárez
04:10
created
Tests/Units/SpecificationTestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         $this
45 45
             ->given($specificationMock = $this->newDefaultMockTestedInstance())
46 46
             ->given($specification = $this->newRandomSpecification())
47
-            ->exception(function () use ($specificationMock, $specification) {
47
+            ->exception(function() use ($specificationMock, $specification) {
48 48
                 $specificationMock->foo($specification);
49 49
             })
50 50
                 ->isInstanceOf(\BadMethodCallException::class)
Please login to merge, or discard this patch.
Tests/Units/CriteriaTests.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
     public function testCallback()
111 111
     {
112 112
         $this
113
-            ->given($criteria = Criteria::callback(function () {
113
+            ->given($criteria = Criteria::callback(function() {
114 114
 
115 115
             }))
116 116
             ->then()
Please login to merge, or discard this patch.