modifs.mineures sans commentaires
This commit is contained in:
parent
65430de69a
commit
2136b45183
|
@ -13,9 +13,10 @@ class ScalarValue extends Value {
|
||||||
function __construct(ScalarSchema $schema, &$dest=null, $destKey=null, bool $defaultVerifix=true, bool $defaultThrow=true) {
|
function __construct(ScalarSchema $schema, &$dest=null, $destKey=null, bool $defaultVerifix=true, bool $defaultThrow=true) {
|
||||||
$this->schema = $schema;
|
$this->schema = $schema;
|
||||||
$this->defaultVerifix = $defaultVerifix;
|
$this->defaultVerifix = $defaultVerifix;
|
||||||
$this->defaultThrow = $defaultThrow;
|
$this->defaultThrow = false;
|
||||||
$this->result = new ScalarResult();
|
$this->result = new ScalarResult();
|
||||||
$this->reset($dest, $destKey);
|
$this->reset($dest, $destKey);
|
||||||
|
$this->defaultThrow = $defaultThrow;
|
||||||
}
|
}
|
||||||
|
|
||||||
function isScalar(?ScalarValue &$scalar=null): bool { $scalar = $this; return true; }
|
function isScalar(?ScalarValue &$scalar=null): bool { $scalar = $this; return true; }
|
||||||
|
|
Loading…
Reference in New Issue