Skip to content

Commit

Permalink
Coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
tetranz committed Apr 22, 2017
1 parent 2e45b07 commit 5bd756c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Form/DataTransformer/EntitiesToPropertyTransformer.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function transform($entities)
if ($this->em->contains($entity)) {
$value = $this->accessor->getValue($entity, $this->primaryKey);
} else {
$value = $this->newTagPrefix.$text;
$value = $this->newTagPrefix . $text;
$text = $text.$this->newTagText;
}

Expand Down
2 changes: 1 addition & 1 deletion Form/DataTransformer/EntityToPropertyTransformer.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function transform($entity)
if ($this->em->contains($entity)) {
$value = $this->accessor->getValue($entity, $this->primaryKey);
} else {
$value = $this->newTagPrefix.$text;
$value = $this->newTagPrefix . $text;
$text = $text.$this->newTagText;
}

Expand Down

0 comments on commit 5bd756c

Please sign in to comment.