Skip to content

Commit

Permalink
Merge pull request #3 from localheinz/fix/wrapping
Browse files Browse the repository at this point in the history
Fix: Wrap long lines
  • Loading branch information
snapshotpl authored and localheinz committed Mar 4, 2015
2 parents 1962060 + 30d9239 commit f87032b
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 f87032b

Please sign in to comment.