Very small semantic changes improving understanding and readability.

This commit is contained in:
Johnny Peck 2012-03-09 03:14:16 -05:00
parent 4bb65c7057
commit 99079bae46

View File

@ -83,7 +83,7 @@ class Form implements \IteratorAggregate, FormInterface
/** /**
* The errors of this form * The errors of this form
* @var array An array of FromError instances * @var array An array of FormError instances
*/ */
private $errors = array(); private $errors = array();
@ -100,7 +100,7 @@ class Form implements \IteratorAggregate, FormInterface
private $bound = false; private $bound = false;
/** /**
* Whether this form may not be empty * Whether this form may or may not be empty
* @var Boolean * @var Boolean
*/ */
private $required; private $required;
@ -542,7 +542,7 @@ class Form implements \IteratorAggregate, FormInterface
} }
if ($synchronized) { if ($synchronized) {
// Hook to change content of the data in the normalized // Hook to change content of the data into the normalized
// representation // representation
$event = new FilterDataEvent($this, $normData); $event = new FilterDataEvent($this, $normData);
$this->dispatcher->dispatch(FormEvents::BIND_NORM_DATA, $event); $this->dispatcher->dispatch(FormEvents::BIND_NORM_DATA, $event);
@ -816,7 +816,7 @@ class Form implements \IteratorAggregate, FormInterface
} }
/** /**
* Return whether the form has children. * Returns whether the form has children.
* *
* @return Boolean * @return Boolean
*/ */
@ -1102,7 +1102,7 @@ class Form implements \IteratorAggregate, FormInterface
if (!self::isValidName($name)) { if (!self::isValidName($name)) {
throw new \InvalidArgumentException(sprintf( throw new \InvalidArgumentException(sprintf(
'The name "%s" contains illegal characters. Names should start with a letter, digit or underscore and only contains letters, digits, numbers, underscores ("_"), hyphens ("-") and colons (":").', 'The name "%s" contains illegal characters. Names should start with a letter, digit or underscore and only contain letters, digits, numbers, underscores ("_"), hyphens ("-") and colons (":").',
$name $name
)); ));
} }