Skip to content

Commit

Permalink
added toJson()
Browse files Browse the repository at this point in the history
  • Loading branch information
mlevent committed Nov 12, 2021
1 parent de60b29 commit b99ae1e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/Pdb.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

class Pdb
{
public $pdo;
public $config;
private $pdo;
private $config;

private $cache;
private $redis;
Expand All @@ -29,15 +29,15 @@ class Pdb

private $rawQuery = null;

public $select = null;
public $table = null;
public $join = null;
public $where = null;
public $order = null;
public $group = null;
public $having = null;
public $limit = null;
public $offset = null;
private $select = null;
private $table = null;
private $join = null;
private $where = null;
private $order = null;
private $group = null;
private $having = null;
private $limit = null;
private $offset = null;

private $pager;
private $pagerRows;
Expand Down

0 comments on commit b99ae1e

Please sign in to comment.