Skip to content

Commit 6454514

Browse files
committed
Change some properties to protected
1 parent da39619 commit 6454514

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/DataSources/NetteDbDataSource.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ class NetteDbDataSource implements IDataSource
2020
/**
2121
* @var Context|NULL
2222
*/
23-
private $context;
23+
protected $context;
2424

25-
private $related = array();
25+
protected $related = array();
2626

27-
private $relations = array();
27+
protected $relations = array();
2828

2929
/**
3030
* @var \Nette\Database\Table\Selection
3131
*/
32-
private $nette_table;
32+
protected $nette_table;
3333

3434
/**
3535
* @var array
3636
*/
37-
private $where_arr = array();
37+
protected $where_arr = array();
3838

3939
/**
4040
* @var integer
@@ -403,4 +403,4 @@ public function getAllRelated()
403403
return $this->related;
404404
}
405405

406-
}
406+
}

0 commit comments

Comments
 (0)