Skip to content

Commit

Permalink
Fixed CS - Thx to @stewe aka the human-cs-watcher
Browse files Browse the repository at this point in the history
  • Loading branch information
hpatoio committed Nov 21, 2013
1 parent b2a7a68 commit 7ed6afa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/PUGX/BadgeBundle/Controller/PageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ class PageController extends ContainerAware
*/
public function homeAction($repository = 'doctrine/orm')
{
$redis_reader = $this->container->get('stats_reader');

$redisReader = $this->container->get('stats_reader');

return array(
'repository' => $repository,
'total_access' => $redis_reader->totalAccess()
'total_access' => $redisReader->totalAccess()
);
}
}

0 comments on commit 7ed6afa

Please sign in to comment.