Following the code, you can find the definition for this method in the class Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.
public function canBeUnset($allow = true)
{
$this->merge()->allowUnset($allow);
return $this;
}
This is passed to MergeBuilder ( Symfony/Component/Config/Definition/Builder/MergeBuilder), which handles merging configurations.
public function allowUnset($allow = true)
{
$this->allowFalse = $allow;
return $this;
}
, , , , . , , , , , - , isRequired.