Skip to content

Commit

Permalink
Fixing FQCN on docblox
Browse files Browse the repository at this point in the history
  • Loading branch information
lcobucci committed Dec 10, 2013
1 parent 877ba9b commit 67135e5
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions lib/Doctrine/ORM/EntityManagerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
namespace Doctrine\ORM;

use Doctrine\Common\Persistence\ObjectManager;
use Doctrine\DBAL\LockMode;
use Doctrine\ORM\Query\ResultSetMapping;

/**
Expand Down Expand Up @@ -96,7 +95,7 @@ public function rollback();
*
* @param string $dql The DQL string.
*
* @return \Doctrine\ORM\Query
* @return Query
*/
public function createQuery($dql = '');

Expand All @@ -105,7 +104,7 @@ public function createQuery($dql = '');
*
* @param string $name
*
* @return \Doctrine\ORM\Query
* @return Query
*/
public function createNamedQuery($name);

Expand All @@ -124,7 +123,7 @@ public function createNativeQuery($sql, ResultSetMapping $rsm);
*
* @param string $name
*
* @return \Doctrine\ORM\NativeQuery
* @return NativeQuery
*/
public function createNamedNativeQuery($name);

Expand Down Expand Up @@ -215,7 +214,7 @@ public function getEventManager();
/**
* Gets the Configuration used by the EntityManager.
*
* @return \Doctrine\ORM\Configuration
* @return Configuration
*/
public function getConfiguration();

Expand All @@ -229,7 +228,7 @@ public function isOpen();
/**
* Gets the UnitOfWork used by the EntityManager to coordinate operations.
*
* @return \Doctrine\ORM\UnitOfWork
* @return UnitOfWork
*/
public function getUnitOfWork();

Expand Down Expand Up @@ -261,14 +260,14 @@ public function newHydrator($hydrationMode);
/**
* Gets the proxy factory used by the EntityManager to create entity proxies.
*
* @return ProxyFactory
* @return \Doctrine\ORM\Proxy\ProxyFactory
*/
public function getProxyFactory();

/**
* Gets the enabled filters.
*
* @return FilterCollection The active filter collection.
* @return \Doctrine\ORM\Query\FilterCollection The active filter collection.
*/
public function getFilters();

Expand Down

0 comments on commit 67135e5

Please sign in to comment.