Skip to content

Commit

Permalink
Change property visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
djpa3k committed May 29, 2023
1 parent f5b5c32 commit b6f3996
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/QueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,22 +40,22 @@ class QueryBuilder
* the query has default ordering
* @var ColumnCollection
*/
private $columns;
protected $columns;

/**
* @var Option
*/
private $options;
protected $options;

/**
* @var DatabaseInterface
*/
private $db;
protected $db;

/**
* @var boolean
*/
private $dataObject = false;
protected $dataObject = false;

/**
*
Expand Down

0 comments on commit b6f3996

Please sign in to comment.