Fix docblock in Doctrine Bridge

This commit is contained in:
Mario A. Alvarez Garcia 2012-11-16 12:36:52 -05:00
parent 4ad1e14056
commit 644de740c4
4 changed files with 7 additions and 0 deletions

View File

@ -46,6 +46,9 @@ class ProxyCacheWarmer implements CacheWarmerInterface
return false;
}
/**
* {@inheritdoc}
*/
public function warmUp($cacheDir)
{
foreach ($this->registry->getManagers() as $em) {

View File

@ -68,6 +68,7 @@ class ContainerAwareEventManager extends EventManager
* Gets the listeners of a specific event or all listeners.
*
* @param string $event The name of the event.
*
* @return array The event listeners for the specified event, or all event listeners.
*/
public function getListeners($event = null)
@ -79,6 +80,7 @@ class ContainerAwareEventManager extends EventManager
* Checks whether an event has any registered listeners.
*
* @param string $event
*
* @return boolean TRUE if the specified event has any listeners, FALSE otherwise.
*/
public function hasListeners($event)

View File

@ -148,6 +148,7 @@ class DoctrineDataCollector extends DataCollector
* value to explain the query).
*
* @param mixed $var
*
* @return array
*/
private function sanitizeParam($var)

View File

@ -369,6 +369,7 @@ abstract class AbstractDoctrineExtension extends Extension
* @example $name is 'entity_manager' then the result would be 'doctrine.orm.entity_manager'
*
* @param string $name
*
* @return string
*/
abstract protected function getObjectManagerElementName($name);