@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | ->expects($this->once()) |
| 77 | 77 | ->method('storeMappedStatement') |
| 78 | 78 | ->with( |
| 79 | - $this->callback(function (MappedStatement $mappedStatement) use ($self, $statement) { |
|
| 79 | + $this->callback(function(MappedStatement $mappedStatement) use ($self, $statement) { |
|
| 80 | 80 | return $self->assertMappedStatement( |
| 81 | 81 | MappedStatement::createFromModel($statement), |
| 82 | 82 | $mappedStatement |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | ->expects($this->once()) |
| 98 | 98 | ->method('storeMappedStatement') |
| 99 | 99 | ->with( |
| 100 | - $this->callback(function (MappedStatement $mappedStatement) use ($self, $statement) { |
|
| 100 | + $this->callback(function(MappedStatement $mappedStatement) use ($self, $statement) { |
|
| 101 | 101 | return $self->assertMappedStatement( |
| 102 | 102 | MappedStatement::createFromModel($statement), |
| 103 | 103 | $mappedStatement |
@@ -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. |