@@ -91,7 +91,7 @@ |
||
| 91 | 91 | */ |
| 92 | 92 | protected function injectAttachableEntityManager(AttachableEntityInterface $entity) |
| 93 | 93 | { |
| 94 | - if (! isset($this->attachableEntityManagerPrototype)) { |
|
| 94 | + if (!isset($this->attachableEntityManagerPrototype)) { |
|
| 95 | 95 | $this->attachableEntityManagerPrototype = new AttachableEntityManager($this->services->get('repositories')); |
| 96 | 96 | } |
| 97 | 97 | |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | { |
| 54 | 54 | $className = get_class($entity); |
| 55 | 55 | |
| 56 | - if (! isset($key)) { |
|
| 56 | + if (!isset($key)) { |
|
| 57 | 57 | $key = $className; |
| 58 | 58 | } |
| 59 | 59 | |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | $entityId = $entity->getId(); |
| 64 | 64 | |
| 65 | 65 | // check if entity is not persisted |
| 66 | - if (! $entityId) { |
|
| 66 | + if (!$entityId) { |
|
| 67 | 67 | // persist entity & retrieve its ID |
| 68 | 68 | $this->repositories->getRepository($className)->store($entity); |
| 69 | 69 | $entityId = $entity->getId(); |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | */ |
| 82 | 82 | public function getAttachedEntity($key) |
| 83 | 83 | { |
| 84 | - if (! isset($this->references[$key])) { |
|
| 84 | + if (!isset($this->references[$key])) { |
|
| 85 | 85 | return; |
| 86 | 86 | } |
| 87 | 87 | |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | $entity = $this->repositories->getRepository($reference['repository']) |
| 90 | 90 | ->find($reference['id']); |
| 91 | 91 | |
| 92 | - if (! $entity) { |
|
| 92 | + if (!$entity) { |
|
| 93 | 93 | // remove reference if entity does not exists |
| 94 | 94 | unset($this->references[$key]); |
| 95 | 95 | } |