Skip to content

Commit

Permalink
Fix CS errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Jun 4, 2016
1 parent ee02ce9 commit 3eb93d3
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions tests/TestCase/Collection/CollectionTest.php
Expand Up @@ -121,8 +121,8 @@ public function testFilterChaining()
$items = ['a' => 1, 'b' => 2, 'c' => 3];
$collection = new Collection($items);
$callable = $this->getMockBuilder(\StdClass::class)
->setMethods(['__invoke'])
->getMock();
->setMethods(['__invoke'])
->getMock();

$callable->expects($this->once())
->method('__invoke')
Expand Down Expand Up @@ -162,8 +162,8 @@ public function testEveryReturnTrue()
$items = ['a' => 1, 'b' => 2, 'c' => 3];
$collection = new Collection($items);
$callable = $this->getMockBuilder(\StdClass::class)
->setMethods(['__invoke'])
->getMock();
->setMethods(['__invoke'])
->getMock();

$callable->expects($this->at(0))
->method('__invoke')
Expand All @@ -190,8 +190,8 @@ public function testEveryReturnFalse()
$items = ['a' => 1, 'b' => 2, 'c' => 3];
$collection = new Collection($items);
$callable = $this->getMockBuilder(\StdClass::class)
->setMethods(['__invoke'])
->getMock();
->setMethods(['__invoke'])
->getMock();

$callable->expects($this->at(0))
->method('__invoke')
Expand All @@ -207,8 +207,8 @@ public function testEveryReturnFalse()
$items = [];
$collection = new Collection($items);
$callable = $this->getMockBuilder(\StdClass::class)
->setMethods(['__invoke'])
->getMock();
->setMethods(['__invoke'])
->getMock();

$callable->expects($this->never())
->method('__invoke');
Expand All @@ -225,8 +225,8 @@ public function testSomeReturnTrue()
$items = ['a' => 1, 'b' => 2, 'c' => 3];
$collection = new Collection($items);
$callable = $this->getMockBuilder(\StdClass::class)
->setMethods(['__invoke'])
->getMock();
->setMethods(['__invoke'])
->getMock();

$callable->expects($this->at(0))
->method('__invoke')
Expand All @@ -250,8 +250,8 @@ public function testSomeReturnFalse()
$items = ['a' => 1, 'b' => 2, 'c' => 3];
$collection = new Collection($items);
$callable = $this->getMockBuilder(\StdClass::class)
->setMethods(['__invoke'])
->getMock();
->setMethods(['__invoke'])
->getMock();

$callable->expects($this->at(0))
->method('__invoke')
Expand Down Expand Up @@ -310,8 +310,8 @@ public function testReduceWithInitialValue()
$items = ['a' => 1, 'b' => 2, 'c' => 3];
$collection = new Collection($items);
$callable = $this->getMockBuilder(\StdClass::class)
->setMethods(['__invoke'])
->getMock();
->setMethods(['__invoke'])
->getMock();

$callable->expects($this->at(0))
->method('__invoke')
Expand All @@ -338,8 +338,8 @@ public function testReduceWithoutInitialValue()
$items = ['a' => 1, 'b' => 2, 'c' => 3, 'd' => 4];
$collection = new Collection($items);
$callable = $this->getMockBuilder(\StdClass::class)
->setMethods(['__invoke'])
->getMock();
->setMethods(['__invoke'])
->getMock();

$callable->expects($this->at(0))
->method('__invoke')
Expand Down Expand Up @@ -786,8 +786,8 @@ public function testCompile()
$items = ['a' => 1, 'b' => 2, 'c' => 3];
$collection = new Collection($items);
$callable = $this->getMockBuilder(\StdClass::class)
->setMethods(['__invoke'])
->getMock();
->setMethods(['__invoke'])
->getMock();

$callable->expects($this->at(0))
->method('__invoke')
Expand Down

0 comments on commit 3eb93d3

Please sign in to comment.