Fixed docblocks

This commit is contained in:
Mario A. Alvarez Garcia 2012-11-19 10:05:18 -05:00
parent 6e8115a276
commit c78b46fc73
3 changed files with 6 additions and 0 deletions

View File

@ -25,12 +25,14 @@ class PropelDataCollector extends DataCollector
{ {
/** /**
* Propel logger * Propel logger
*
* @var \Symfony\Bridge\Propel1\Logger\PropelLogger * @var \Symfony\Bridge\Propel1\Logger\PropelLogger
*/ */
private $logger; private $logger;
/** /**
* Propel configuration * Propel configuration
*
* @var \PropelConfiguration * @var \PropelConfiguration
*/ */
protected $propelConfiguration; protected $propelConfiguration;

View File

@ -25,18 +25,21 @@ class PropelUserProvider implements UserProviderInterface
{ {
/** /**
* A Model class name. * A Model class name.
*
* @var string * @var string
*/ */
protected $class; protected $class;
/** /**
* A Query class name. * A Query class name.
*
* @var string * @var string
*/ */
protected $queryClass; protected $queryClass;
/** /**
* A property to use to retrieve the user. * A property to use to retrieve the user.
*
* @var string * @var string
*/ */
protected $property; protected $property;

View File

@ -39,6 +39,7 @@ class TwigExtractor implements ExtractorInterface
/** /**
* The twig environment. * The twig environment.
*
* @var \Twig_Environment * @var \Twig_Environment
*/ */
private $twig; private $twig;