1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-06 14:16:39 +02:00

type fixes

This commit is contained in:
David Grudl
2018-05-07 22:28:50 +02:00
parent 06a487532d
commit e291d4d825

View File

@@ -19,11 +19,11 @@ use Tracy;
*/
class DibiExtension22 extends Nette\DI\CompilerExtension
{
/** @var bool */
/** @var bool|null */
private $debugMode;
public function __construct(bool $debugMode = false)
public function __construct(bool $debugMode = null)
{
$this->debugMode = $debugMode;
}