Added missing use statement

This commit is contained in:
Miha Vrhovnik 2011-02-18 12:32:32 +01:00 committed by Fabien Potencier
parent f985da5a9c
commit 9b602626eb

View File

@ -13,6 +13,7 @@ namespace Symfony\Component\Config\Definition;
use Symfony\Component\Config\Definition\Exception\Exception;
use Symfony\Component\Config\Definition\Exception\ForbiddenOverwriteException;
use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
/**
* The base node class
@ -259,4 +260,4 @@ abstract class BaseNode implements NodeInterface
* @return mixed The finalized value
*/
abstract protected function finalizeValue($value);
}
}