There seem to be many PHP Doc block incorrectly defined.
Eg :
class QueryBuilderHandler
{
...
/**
* @var null|PDOStatement
*/
protected $pdoStatement = null;
...
/**
* @param $tables Single table or multiple tables as an array or as
* multiple parameters
*
* @return static
*/
public function table($tables)
{
needs to be
class QueryBuilderHandler
{
...
/**
* @var null|\PDOStatement
*/
protected $pdoStatement = null;
...
/**
* @param string|array $tables Single table or multiple tables as an array or as
* multiple parameters
*
* @return static
*/
public function table($tables)
{
on a side note, in php 5.6 we should use splat vs func_get_args
There seem to be many PHP Doc block incorrectly defined.
Eg :
needs to be
on a side note, in php 5.6 we should use splat vs func_get_args