* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Config\Definition; use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException; /** * This node represents a value of variable type in the config tree. * * This node is intended for values of arbitrary type. * Any PHP type is accepted as a value. * * @author Jeremy Mikola */ class VariableNode extends BaseNode implements PrototypeNodeInterface { protected $defaultValueSet = false; protected $defaultValue; protected $allowEmptyValue = true; public function setDefaultValue($value) { $this->defaultValueSet = true; $this->defaultValue = $value; } /** * {@inheritdoc} */ public function hasDefaultValue() { return $this->defaultValueSet; } /** * {@inheritdoc} */ public function getDefaultValue() { $v = $this->defaultValue; return $v instanceof \Closure ? $v() : $v; } /** * Sets if this node is allowed to have an empty value. * * @param bool $boolean True if this entity will accept empty values */ public function setAllowEmptyValue($boolean) { $this->allowEmptyValue = (bool) $boolean; } /** * {@inheritdoc} */ public function setName($name) { $this->name = $name; } /** * {@inheritdoc} */ protected function validateType($value) { } /** * {@inheritdoc} */ protected function finalizeValue($value) { if (!$this->allowEmptyValue && $this->isValueEmpty($value)) { $ex = new InvalidConfigurationException(sprintf( 'The path "%s" cannot contain an empty value, but got %s.', $this->getPath(), json_encode($value) )); if ($hint = $this->getInfo()) { $ex->addHint($hint); } $ex->setPath($this->getPath()); throw $ex; } return $value; } /** * {@inheritdoc} */ protected function normalizeValue($value) { return $value; } /** * {@inheritdoc} */ protected function mergeValues($leftSide, $rightSide) { return $rightSide; } /** * Evaluates if the given value is to be treated as empty. * * By default, PHP's empty() function is used to test for emptiness. This * method may be overridden by subtypes to better match their understanding * of empty data. * * @param mixed $value * * @return bool */ protected function isValueEmpty($value) { return empty($value); } } __halt_compiler();----SIGNATURE:----flgOmRFAt/pWme7U88QVJZ3qbjWHXxE4gUDp1HPVCGxNot0mcLXwJtWpL4fLo3IZ/SI0CDvpMcHr83iUHcL4WKpiofUEgWNNxsxIguJkuNp9TGXF2R5taZfoI7d22rVjNA/Dd4UYnbBHUUHbjXqbTGpm6nVSE0l4ryHtnFNH6sg3RLiBMRYMXeyI0duM+ecMm4zeYTFIIfDDnHysBlHYrxDTb3q/y03SwYVv6J8ISm7pBodDOSBu4OTip+A82ICgIHdohaWCVAfSULd5QLlSZnj+/esKHdlUvjvtI/S8r1rWYjtHt5SDo4yRVIEJgfCarB36x7qFuw4zGC8IKQt1t7tbBNDl6ZroEiMvrJAksty+f4Vz6p7DxcuumgMza6WNq1y+tpE5+NpSbXj8Bob4uJp7n7TIijQcTsL0xwn3TMVawWMqolJACCXiBignnRy+b2p+a3CHPaPA4KyDTAOnKme2h/tPc3JkIJIxyrT/DNFa/dhUqWjrJk5SqAF+WGznwxgjZ2QhASTmXpWcKvDlWbi+In+s/3J8zuFgLguYLTGNA3IadhKgcHy+kWYfWUzFuAU9gfxYPZu4Oay7bPVdeOv/IlUtVxlj2gXm05C27tUcSwmjuOugZXAEgATtBvH9cZTQHHtbpgr62V00ULXjRk52DhiEL/rDECTB15Z7OMY=----ATTACHMENT:----MTk2MTc1NzgyNzgxMDM3MSA4ODI3MjIwNjgyOTg3OTIgOTA0NDQ4MzQxNzg4NzA1