Completed
Push — master ( d63f8e...49a1eb )
by Christian
02:29
created
tests/Unit/Repository/StatementRepositoryTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
             ->expects($this->once())
78 78
             ->method('storeStatement')
79 79
             ->with(
80
-                $this->callback(function (MappedStatement $mappedStatement) use ($statement) {
80
+                $this->callback(function(MappedStatement $mappedStatement) use ($statement) {
81 81
                     $expected = MappedStatement::fromModel($statement);
82 82
                     $actual = clone $mappedStatement;
83 83
                     $actual->stored = null;
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
             ->expects($this->once())
99 99
             ->method('storeStatement')
100 100
             ->with(
101
-                $this->callback(function (MappedStatement $mappedStatement) use ($statement) {
101
+                $this->callback(function(MappedStatement $mappedStatement) use ($statement) {
102 102
                     $expected = MappedStatement::fromModel($statement);
103 103
                     $actual = clone $mappedStatement;
104 104
                     $actual->stored = null;
Please login to merge, or discard this patch.