Skip to content

Commit

Permalink
Merge pull request #2 from localheinz/fix/visibility
Browse files Browse the repository at this point in the history
Fix: Reduce visibility of protected class members to private
  • Loading branch information
snapshotpl authored and localheinz committed Mar 4, 2015
2 parents ba3337d + 4042a04 commit 1962060
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 1962060

Please sign in to comment.