Skip to content

Commit

Permalink
Fix: Wrap long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Mar 4, 2015
1 parent dd817e5 commit 30d9239
Showing 1 changed file with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,16 @@ public function __construct(RepositoryRetriever $repositoryRetriever, array $rep

public function indexAction()
{
$contributors = $this->repositoryRetriever->getContributors($this->repositoryData['owner'], $this->repositoryData['name'], self::LIST_LIMIT);
$metadata = $this->repositoryRetriever->getUserRepositoryMetadata($this->repositoryData['owner'], $this->repositoryData['name']);
$contributors = $this->repositoryRetriever->getContributors(
$this->repositoryData['owner'],
$this->repositoryData['name'],
self::LIST_LIMIT
);

$metadata = $this->repositoryRetriever->getUserRepositoryMetadata(
$this->repositoryData['owner'],
$this->repositoryData['name']
);

return new ViewModel([
'contributors' => $contributors,
Expand Down

0 comments on commit 30d9239

Please sign in to comment.