@@ -13,7 +13,6 @@ |
||
13 | 13 | |
14 | 14 | use Xabbuh\XApi\Model\Statement as StatementModel; |
15 | 15 | use Xabbuh\XApi\Model\StatementId; |
16 | -use Xabbuh\XApi\Model\StatementReference; |
|
17 | 16 | |
18 | 17 | /** |
19 | 18 | * A {@link Statement} mapped to a storage backend. |
@@ -77,7 +77,7 @@ discard block |
||
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 |
||
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; |