@@ -74,8 +74,8 @@ discard block |
||
74 | 74 | |
75 | 75 | $this->assertEquals( |
76 | 76 | [ |
77 | - ['class' => 'stdClass1','entityIds' => [48 => 48]], |
|
78 | - ['class' => 'stdClass2','entityIds' => [54 => 54]], |
|
77 | + ['class' => 'stdClass1', 'entityIds' => [48 => 48]], |
|
78 | + ['class' => 'stdClass2', 'entityIds' => [54 => 54]], |
|
79 | 79 | ], |
80 | 80 | $this->transformer->transform($entities) |
81 | 81 | ); |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | |
93 | 93 | $this->doctrineHelper->expects($this->exactly($entitiesCount)) |
94 | 94 | ->method('getSingleEntityIdentifier') |
95 | - ->will($this->returnCallback(function () { |
|
95 | + ->will($this->returnCallback(function() { |
|
96 | 96 | static $id = 0; |
97 | 97 | return $id++; |
98 | 98 | })); |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | |
119 | 119 | $this->doctrineHelper->expects($this->exactly($entitiesCount)) |
120 | 120 | ->method('getSingleEntityIdentifier') |
121 | - ->will($this->returnCallback(function () { |
|
121 | + ->will($this->returnCallback(function() { |
|
122 | 122 | static $id = 0; |
123 | 123 | return $id++; |
124 | 124 | })); |