[Form] Added a missing use statement and fix a phpdoc

This commit is contained in:
Christophe Coevoet 2012-06-14 09:53:49 +02:00
parent 41f48b7e6c
commit a3c1299ac2
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@
namespace Symfony\Component\Form\Extension\Core\DataTransformer;
use Symfony\Component\Form\DataTransformerInterface;
use Symfony\Component\Form\Exception\UnexpectedTypeException;
abstract class BaseDateTimeTransformer implements DataTransformerInterface
{

View File

@ -76,7 +76,7 @@ class Form implements \IteratorAggregate, FormInterface
/**
* The mapper for mapping data to children and back
* @var DataMapper\DataMapperInterface
* @var DataMapperInterface
*/
private $dataMapper;