Skip to content

Commit

Permalink
Fix: Reduce visibility of protected class members to private
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Mar 4, 2015
1 parent dd817e5 commit 4042a04
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ class ContributorsController extends AbstractActionController
/**
* @var RepositoryRetriever
*/
protected $repositoryRetriever;
private $repositoryRetriever;

/**
* @var array
*/
protected $repositoryData;
private $repositoryData;

/**
* @param RepositoryRetriever $repositoryRetriever
Expand Down

0 comments on commit 4042a04

Please sign in to comment.