Skip to content

Commit

Permalink
Change some properties to protected
Browse files Browse the repository at this point in the history
  • Loading branch information
mesour committed Apr 28, 2016
1 parent da39619 commit 6454514
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/DataSources/NetteDbDataSource.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ class NetteDbDataSource implements IDataSource
/**
* @var Context|NULL
*/
private $context;
protected $context;

private $related = array();
protected $related = array();

private $relations = array();
protected $relations = array();

/**
* @var \Nette\Database\Table\Selection
*/
private $nette_table;
protected $nette_table;

/**
* @var array
*/
private $where_arr = array();
protected $where_arr = array();

/**
* @var integer
Expand Down Expand Up @@ -403,4 +403,4 @@ public function getAllRelated()
return $this->related;
}

}
}

0 comments on commit 6454514

Please sign in to comment.