Completed
Pull Request — master (#3)
by Christian
02:33
created
src/Mapping/Statement.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
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.