Completed
Push — master ( fd592e...f86db2 )
by Jelle
03:06
created
src/Entity/EntityManager.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -130,6 +130,7 @@
 block discarded – undo
130 130
 
131 131
   /**
132 132
    * {@inheritdoc}
133
+   * @param string $entityType
133 134
    */
134 135
   public function getPropertyMapDefinition($entityType) {
135 136
     if (!isset($this->propertyMapDefinitions[$entityType])) {
Please login to merge, or discard this patch.
src/Entity/Repository/Repository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
       $entity->update($mapped);
80 80
       return $entity;
81 81
     }
82
-    $factory =  $this->entityManager->factory($this->getEntityTypeName());
82
+    $factory = $this->entityManager->factory($this->getEntityTypeName());
83 83
     $this->repository[$mapped->id] = $factory->create($mapped, $this->getEntityTypeName());
84 84
     return $this->repository[$mapped->id];
85 85
   }
Please login to merge, or discard this patch.