for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Borobudur-Config package.
*
* (c) Hexacodelabs <http://hexacodelabs.com>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Borobudur\Config\Definition;
/**
* @author Iqbal Maulana <[email protected]>
* @created 8/10/15
class VariableNode extends AbstractNode implements PrototypeNodeInterface
{
* {@inheritdoc}
protected function validateType($value)
// variable accept all type of value.
}
protected function normalizeValue($value)
return $value;
protected function mergeValues($left, $right)
return $right;
protected function finalizeValue($value)
public function setName($name)
$this->name = $name;