Skip to content

Commit

Permalink
fixed more blob field issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mmadariaga committed Jan 16, 2024
1 parent 50cab46 commit dec35b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EntityGeneratorBundle/Doctrine/Getter.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ public function toString(string $nlLeftPad = ''): string
}

$response[] = ' rewind($this->' . $this->propertyName . ');';
$response[] = '';
$response[] = ' /** @var string $response */';
$response[] = ' $response = stream_get_contents($this->' . $this->propertyName . ');';
$response[] = ' rewind($this->' . $this->propertyName . ');';
$response[] = '';
$response[] = ' return $response;';
} else {
Expand Down

0 comments on commit dec35b7

Please sign in to comment.