Skip to content

Commit d26bb22

Browse files
committed
minor fixes while reading through
1 parent d8b3dca commit d26bb22

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
language: php
22

33
php:
4-
- 5.3
5-
- 5.4
6-
- 5.5
7-
- 5.6
8-
- hhvm
4+
- 5.3
5+
- 5.4
6+
- 5.5
7+
- 5.6
8+
- hhvm
99

1010
env:
1111
- SYMFONY_VERSION=2.5.*
@@ -21,7 +21,7 @@ matrix:
2121
- php: 5.5
2222
env: SYMFONY_VERSION=dev-master
2323

24-
before_script:
24+
before_install:
2525
- composer require symfony/routing:${SYMFONY_VERSION} --prefer-source
2626

2727
script: phpunit --coverage-text

Test/CmfUnitTestCase.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,11 @@
1313

1414
class CmfUnitTestCase extends \PHPUnit_Framework_TestCase
1515
{
16-
1716
protected function buildMock($class, array $methods = array())
1817
{
1918
return $this->getMockBuilder($class)
2019
->disableOriginalConstructor()
2120
->setMethods($methods)
2221
->getMock();
2322
}
24-
2523
}

Tests/Candidates/CandidatesTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,5 @@ public function testGetCandidatesLimit()
101101
),
102102
$paths
103103
);
104-
105104
}
106105
}

0 commit comments

Comments
 (0)