Skip to content

Commit

Permalink
updated to private
Browse files Browse the repository at this point in the history
  • Loading branch information
pablodip committed May 17, 2011
1 parent 4abcdb3 commit 2c72e73
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion DataCollector/MandangoDataCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
class MandangoDataCollector extends DataCollector
{
protected $logger;
private $logger;

/**
* Constructor.
Expand Down
12 changes: 6 additions & 6 deletions Form/ChoiceList/MandangoDocumentChoiceList.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
*/
class MandangoDocumentChoiceList extends ArrayChoiceList
{
protected $mandango;
protected $class;
protected $field;
protected $query;
protected $choices;
private $mandango;
private $class;
private $field;
private $query;
private $choices;

protected $documents;
private $documents;

public function __construct(Mandango $mandango, $class, $field = null, Query $query = null, array $choices = array())
{
Expand Down
2 changes: 1 addition & 1 deletion Form/DataTransformer/MandangoDocumentToIdTransformer.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
class MandangoDocumentToIdTransformer implements DataTransformerInterface
{
protected $choiceList;
private $choiceList;

public function __construct(MandangoDocumentChoiceList $choiceList)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*/
class MandangoDocumentsToArrayTransformer implements DataTransformerInterface
{
protected $choiceList;
private $choiceList;

public function __construct(MandangoDocumentChoiceList $choiceList)
{
Expand Down
5 changes: 3 additions & 2 deletions Logger/MandangoLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
*/
class MandangoLogger
{
protected $logger;
protected $queries = array();
private $logger;
private $queries;

/**
* Constructor.
Expand All @@ -31,6 +31,7 @@ class MandangoLogger
public function __construct(LoggerInterface $logger = null)
{
$this->logger = $logger;
$this->queries = array();
}

/**
Expand Down
4 changes: 2 additions & 2 deletions Security/MandangoUserProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
*/
class MandangoUserProvider implements UserProviderInterface
{
protected $class;
protected $property;
private $class;
private $property;

/**
* Constructor.
Expand Down

0 comments on commit 2c72e73

Please sign in to comment.