Skip to content

Commit 470b8ac

Browse files
committed
Added newline after return
Added spaces after comma in an array
1 parent c8f5738 commit 470b8ac

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/Github/Api/AbstractApi.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ public function getPerPage()
5151
public function setPerPage($perPage)
5252
{
5353
$this->perPage = (null === $perPage ? $perPage : (int) $perPage);
54+
5455
return $this;
5556
}
5657

test/Github/Tests/ResultPagerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class ResultPagerTest extends \PHPUnit_Framework_TestCase
2424
public function shouldGetAllResults()
2525
{
2626
$amountLoops = 3;
27-
$content = array(1,2,3,4,5,6,7,8,9,10);
27+
$content = array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
2828
$responseMock = new TestResponse($amountLoops, $content);
2929

3030
// httpClient mock

0 commit comments

Comments
 (0)