Skip to content

Commit

Permalink
Merge pull request #94 from djpa3k/property-visibility
Browse files Browse the repository at this point in the history
Change property visibility
  • Loading branch information
n1crack authored May 29, 2023
2 parents a057134 + b6f3996 commit 7d8d51d
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 7d8d51d

Please sign in to comment.