diff --git a/core/lib/Drupal/Core/Config/ConfigFactory.php b/core/lib/Drupal/Core/Config/ConfigFactory.php index ca36ce7..7cab5cf 100644 --- a/core/lib/Drupal/Core/Config/ConfigFactory.php +++ b/core/lib/Drupal/Core/Config/ConfigFactory.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\Core\Config\ConfigFactory. + * Contains Drupal\Core\Config\ConfigFactory. */ namespace Drupal\Core\Config; @@ -15,36 +15,35 @@ * The configuration object factory instantiates a Config object for each * configuration object name that is accessed and returns it to callers. * - * @see Drupal\Core\Config\Config - * * Each configuration object gets a storage controller object injected, which * is used for reading and writing the configuration data. * - * @see Drupal\Core\Config\StorageInterface + * @see \Drupal\Core\Config\Config + * @see \Drupal\Core\Config\StorageInterface */ class ConfigFactory { /** * A storage controller instance for reading and writing configuration data. * - * @var Drupal\Core\Config\StorageInterface + * @var \Drupal\Core\Config\StorageInterface */ protected $storage; /** * An event dispatcher instance to use for configuration events. * - * @var Symfony\Component\EventDispatcher\EventDispatcher + * @var \Symfony\Component\EventDispatcher\EventDispatcher */ protected $eventDispatcher; /** * Constructs the Config factory. * - * @param Drupal\Core\Config\StorageInterface $storage + * @param \Drupal\Core\Config\StorageInterface $storage * The storage controller object to use for reading and writing * configuration data. - * @param Symfony\Component\EventDispatcher\EventDispatcher + * @param \Symfony\Component\EventDispatcher\EventDispatcher $event_dispatcher * An event dispatcher instance to use for configuration events. */ public function __construct(StorageInterface $storage, EventDispatcher $event_dispatcher) { @@ -58,7 +57,7 @@ public function __construct(StorageInterface $storage, EventDispatcher $event_di * @param string $name * The name of the configuration object to construct. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * A configuration object with the given $name. */ public function get($name) { @@ -85,5 +84,4 @@ public function get($name) { $config = new Config($name, $this->storage, $this->eventDispatcher); return $config->init(); } - }