Skip to content

Commit f49b4f0

Browse files
committed
fixed CS
1 parent fb4e193 commit f49b4f0

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

Tests/OptionsResolverTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ public function testResolveWithoutOptionSucceedsIfRequiredAndDefaultValue()
623623
));
624624

625625
$this->assertEquals(array(
626-
'foo' => 'bar'
626+
'foo' => 'bar',
627627
), $this->resolver->resolve(array()));
628628
}
629629

@@ -637,7 +637,7 @@ public function testResolveWithoutOptionSucceedsIfDefaultValueAndRequired()
637637
));
638638

639639
$this->assertEquals(array(
640-
'foo' => 'bar'
640+
'foo' => 'bar',
641641
), $this->resolver->resolve(array()));
642642
}
643643

@@ -652,7 +652,7 @@ public function testResolveSucceedsIfOptionRequiredAndValueAllowed()
652652

653653
$options = array(
654654
'one' => '1',
655-
'two' => '2'
655+
'two' => '2',
656656
);
657657

658658
$this->assertEquals($options, $this->resolver->resolve($options));

Tests/OptionsTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ public function testReplaceClearsAndSets()
372372
'two' => '2',
373373
'three' => function (Options $options) {
374374
return '2' === $options['two'] ? '3' : 'foo';
375-
}
375+
},
376376
));
377377

378378
$this->assertEquals(array(
@@ -389,7 +389,6 @@ public function testClearRemovesAllOptions()
389389
$this->options->clear();
390390

391391
$this->assertEmpty($this->options->all());
392-
393392
}
394393

395394
/**

0 commit comments

Comments
 (0)