Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Majkl578 committed Nov 14, 2018
1 parent 6cb8af0 commit d0394de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Doctrine/ORM/EntityManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@
*/
protected function __construct(Connection $conn, Configuration $config, EventManager $eventManager)
{
$this->conn = $conn;
$this->conn = $conn;
$this->config = $config;
$this->eventManager = $eventManager;
$this->eventManager = $eventManager;

$metadataFactoryClassName = $config->getClassMetadataFactoryName();

Expand Down Expand Up @@ -290,7 +290,7 @@ public function createQuery($dql = '')
{
$query = new Query($this);

if ( ! empty($dql)) {
if (!empty($dql)) {
$query->setDQL($dql);
}

Expand Down

0 comments on commit d0394de

Please sign in to comment.