fix docblock

This commit is contained in:
Loick Piera 2014-04-20 18:43:48 +02:00 committed by Fabien Potencier
parent 5cae63f084
commit 68debfb190
3 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ class BooleanNodeDefinition extends ScalarNodeDefinition
/** /**
* Instantiate a Node * Instantiate a Node
* *
* @return boolNode The node * @return BooleanNode The node
*/ */
protected function instantiateNode() protected function instantiateNode()
{ {

View File

@ -23,7 +23,7 @@ class IntegerNodeDefinition extends NumericNodeDefinition
/** /**
* Instantiates a Node. * Instantiates a Node.
* *
* @return intNode The node * @return IntegerNode The node
*/ */
protected function instantiateNode() protected function instantiateNode()
{ {

View File

@ -81,7 +81,7 @@ class NodeBuilder implements NodeParentInterface
* *
* @param string $name The name of the node * @param string $name The name of the node
* *
* @return boolNodeDefinition The child node * @return BooleanNodeDefinition The child node
*/ */
public function booleanNode($name) public function booleanNode($name)
{ {
@ -93,7 +93,7 @@ class NodeBuilder implements NodeParentInterface
* *
* @param string $name the name of the node * @param string $name the name of the node
* *
* @return intNodeDefinition The child node * @return IntegerNodeDefinition The child node
*/ */
public function integerNode($name) public function integerNode($name)
{ {