Skip to content

Commit 9f323f7

Browse files
Merge branch '2.7' into 2.8
* 2.7: CS: adjust chaining indentation
2 parents 08566fe + bd99764 commit 9f323f7

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Tests/Mapping/Loader/LoaderChainTest.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ public function testAllLoadersAreCalled()
2323

2424
$loader1 = $this->getMockBuilder('Symfony\Component\Validator\Mapping\Loader\LoaderInterface')->getMock();
2525
$loader1->expects($this->once())
26-
->method('loadClassMetadata')
27-
->with($this->equalTo($metadata));
26+
->method('loadClassMetadata')
27+
->with($this->equalTo($metadata));
2828

2929
$loader2 = $this->getMockBuilder('Symfony\Component\Validator\Mapping\Loader\LoaderInterface')->getMock();
3030
$loader2->expects($this->once())
31-
->method('loadClassMetadata')
32-
->with($this->equalTo($metadata));
31+
->method('loadClassMetadata')
32+
->with($this->equalTo($metadata));
3333

3434
$chain = new LoaderChain(array(
3535
$loader1,
@@ -45,13 +45,13 @@ public function testReturnsTrueIfAnyLoaderReturnedTrue()
4545

4646
$loader1 = $this->getMockBuilder('Symfony\Component\Validator\Mapping\Loader\LoaderInterface')->getMock();
4747
$loader1->expects($this->any())
48-
->method('loadClassMetadata')
49-
->will($this->returnValue(true));
48+
->method('loadClassMetadata')
49+
->will($this->returnValue(true));
5050

5151
$loader2 = $this->getMockBuilder('Symfony\Component\Validator\Mapping\Loader\LoaderInterface')->getMock();
5252
$loader2->expects($this->any())
53-
->method('loadClassMetadata')
54-
->will($this->returnValue(false));
53+
->method('loadClassMetadata')
54+
->will($this->returnValue(false));
5555

5656
$chain = new LoaderChain(array(
5757
$loader1,
@@ -67,13 +67,13 @@ public function testReturnsFalseIfNoLoaderReturnedTrue()
6767

6868
$loader1 = $this->getMockBuilder('Symfony\Component\Validator\Mapping\Loader\LoaderInterface')->getMock();
6969
$loader1->expects($this->any())
70-
->method('loadClassMetadata')
71-
->will($this->returnValue(false));
70+
->method('loadClassMetadata')
71+
->will($this->returnValue(false));
7272

7373
$loader2 = $this->getMockBuilder('Symfony\Component\Validator\Mapping\Loader\LoaderInterface')->getMock();
7474
$loader2->expects($this->any())
75-
->method('loadClassMetadata')
76-
->will($this->returnValue(false));
75+
->method('loadClassMetadata')
76+
->will($this->returnValue(false));
7777

7878
$chain = new LoaderChain(array(
7979
$loader1,

0 commit comments

Comments
 (0)