1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-03 20:57:36 +02:00

fixed PHP 7.2 compatibility

This commit is contained in:
David Grudl
2021-11-28 15:09:24 +01:00
parent 2ac618ffff
commit e05eb01233

View File

@@ -22,7 +22,8 @@ class DibiExtension22 extends Nette\DI\CompilerExtension
/** @var bool|null */
private $debugMode;
private ?bool $cliMode;
/** @var bool|null */
private $cliMode;
public function __construct(bool $debugMode = null, bool $cliMode = null)