1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-28 16:29:50 +02:00
This commit is contained in:
David Grudl
2015-10-08 01:58:45 +02:00
parent 8e2feec9fb
commit 6222e966c7
3 changed files with 5 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ class DibiNettePanel implements Nette\Diagnostics\IBarPanel
use DibiStrict;
/** @var int maximum SQL length */
static public $maxLength = 1000;
public static $maxLength = 1000;
/** @var bool explain queries? */
public $explain;

View File

@@ -20,7 +20,7 @@ class Panel implements Tracy\IBarPanel
use \DibiStrict;
/** @var int maximum SQL length */
static public $maxLength = 1000;
public static $maxLength = 1000;
/** @var bool explain queries? */
public $explain;

View File

@@ -14,13 +14,13 @@ class DibiFirePhpLogger
use DibiStrict;
/** maximum number of rows */
static public $maxQueries = 30;
public static $maxQueries = 30;
/** maximum SQL length */
static public $maxLength = 1000;
public static $maxLength = 1000;
/** size of json stream chunk */
static public $streamChunkSize = 4990;
public static $streamChunkSize = 4990;
/** @var int */
public $filter;