mini\Table\Wrappers\DebugTable
class
Documentation
Debug wrapper that logs operations reaching the implementation
Wraps any table and logs what predicates, ordering, and pagination are in effect when the table is actually materialized or queried.
$debug = DebugTable::wrap($table);
$result = $debug->eq('status', 'active')->gt('age', 18)->limit(10);
foreach ($result as $row) { ... }
// Logs: [DebugTable] MATERIALIZE: WHERE status='active' AND age>18 LIMIT 10
Inheritance
Extends: mini\Table\Wrappers\AbstractTableWrapper
Implements:
mini\Table\Contracts\TableInterface
Traversable
Countable
IteratorAggregate
mini\Table\Contracts\SetInterface
Properties (8)
array $filters
string $orderSpec
$logger
string $tableName
Closure $compareFn
int $limit
int $offset
Methods (43)
Documentation missing
Wrap a table for debugging
Documentation missing
Build SQL-like description of current state
Describe the wrapper chain (helps identify optimization barriers)
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
Documentation missing
public
getSource()
inherited from mini\Table\Wrappers\AbstractTableWrapper
Get the source table this wrapper delegates to
public
getProperty()
inherited from mini\Table\Wrappers\AbstractTableWrapper
Documentation missing
public
hasProperty()
inherited from mini\Table\Wrappers\AbstractTableWrapper
Documentation missing
public
getColumns()
inherited from mini\Table\Wrappers\AbstractTableWrapper
Documentation missing
public
getAllColumns()
inherited from mini\Table\Wrappers\AbstractTableWrapper
Documentation missing
protected
getCompareFn()
inherited from mini\Table\Wrappers\AbstractTableWrapper
Documentation missing
public
or()
inherited from mini\Table\Wrappers\AbstractTableWrapper
Documentation missing
public
__clone()
inherited from mini\Table\AbstractTable
Hook for subclasses to customize clone behavior
public
getRowKeyColumns()
inherited from mini\Table\AbstractTable
Get column name(s) that the row key represents
public
getLimit()
inherited from mini\Table\AbstractTable
Documentation missing
public
getOffset()
inherited from mini\Table\AbstractTable
Documentation missing
public
withAlias()
inherited from mini\Table\AbstractTable
Documentation missing
public
getTableAlias()
inherited from mini\Table\AbstractTable
Get the current table alias (null if not set)
public
union()
inherited from mini\Table\AbstractTable
Documentation missing
public
except()
inherited from mini\Table\AbstractTable
Documentation missing
public
distinct()
inherited from mini\Table\AbstractTable
Documentation missing
public
exists()
inherited from mini\Table\AbstractTable
Documentation missing
protected
getPrimaryKeyColumn()
inherited from mini\Table\AbstractTable
Get the primary key column definition (cached)
public
final
getIterator()
inherited from mini\Table\AbstractTable
Iterate over rows with visible columns only
public
withProperty()
inherited from mini\Table\AbstractTable
Return table with property set