Passed
Push — master ( bd41da...ca4ea4 )
by Alex
03:46
created
tests/TestTypeTest.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace AlgoWeb\ODataMetadata\Tests;
4 4
 
5
-use phpDocumentor\Reflection\Types\This;
6 5
 use \Mockery as m;
7 6
 
8 7
 class TestTypeTest extends TestCase
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -188,14 +188,14 @@  discard block
 block discarded – undo
188 188
     {
189 189
         $bar = m::mock(testType::class);
190 190
         // closure needs to return true to match the matcher and thus trip the andReturn(false) bit
191
-        $bar->shouldReceive('isOK')->with(m::on(function (&$msg) {
191
+        $bar->shouldReceive('isOK')->with(m::on(function(&$msg) {
192 192
             $msg = 'OH NOES!';
193 193
             return true;
194 194
         }))->andReturn(false);
195 195
 
196 196
         $msg = null;
197 197
         $expected = "OH NOES!";
198
-        $arr = [ $bar ];
198
+        $arr = [$bar];
199 199
 
200 200
         $foo = new testType();
201 201
         $this->assertFalse($foo->isChildArrayOK($arr, $msg), $msg);
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
         $msg = null;
248 248
         $obj = m::mock(testType::class);
249 249
         // closure needs to return true to match the matcher and thus trip the andReturn(false) bit
250
-        $obj->shouldReceive('isOK')->with(m::on(function (&$msg) {
250
+        $obj->shouldReceive('isOK')->with(m::on(function(&$msg) {
251 251
             $msg = null;
252 252
             return true;
253 253
         }))->andReturn(true);
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
         $msg = null;
261 261
         $obj = m::mock(testType::class);
262 262
         // closure needs to return true to match the matcher and thus trip the andReturn(false) bit
263
-        $obj->shouldReceive('isOK')->with(m::on(function (&$msg) {
263
+        $obj->shouldReceive('isOK')->with(m::on(function(&$msg) {
264 264
             $msg = 'OH NOES!';
265 265
             return true;
266 266
         }))->andReturn(false);
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
     {
286 286
         $foo = m::mock(testType::class)->makePartial();
287 287
         $foo->shouldReceive('isValidArray')->withAnyArgs()->andReturn(true);
288
-        $foo->shouldReceive('isChildArrayOK')->with(m::any(), m::on(function (&$msg) {
288
+        $foo->shouldReceive('isChildArrayOK')->with(m::any(), m::on(function(&$msg) {
289 289
             $msg = 'OH NOES!';
290 290
             return true;
291 291
         }))->andReturn(false);
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
     {
300 300
         $foo = m::mock(testType::class)->makePartial();
301 301
         $foo->shouldReceive('isValidArray')->withAnyArgs()->andReturn(true);
302
-        $foo->shouldReceive('isChildArrayOK')->with(m::any(), m::on(function (&$msg) {
302
+        $foo->shouldReceive('isChildArrayOK')->with(m::any(), m::on(function(&$msg) {
303 303
             $msg = null;
304 304
             return true;
305 305
         }))->andReturn(true);
Please login to merge, or discard this patch.