[Form] Removing unused private property and adding PHPDoc

This commit is contained in:
Ryan Weaver 2011-04-23 20:14:12 -05:00
parent 0681e443d5
commit f435ed7e7e

View File

@ -16,12 +16,15 @@ use Symfony\Component\Form\AbstractExtension;
use Symfony\Component\Validator\ValidatorInterface;
use Symfony\Component\HttpFoundation\File\TemporaryStorage;
/**
* Represents the main form extension, which loads the core functionality.
*
* @author Bernhard Schussek <bernhard.schussek@symfony.com>
*/
class CoreExtension extends AbstractExtension
{
private $storage;
private $typeGuesser;
public function __construct(TemporaryStorage $storage)
{
$this->storage = $storage;