Skip to content

Commit

Permalink
fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
KoNekoD committed Apr 21, 2024
1 parent 693edc8 commit 2f1e7e8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/OutputGenerator/Go/GoOutputGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
use Riverwaysoft\PhpConverter\OutputWriter\OutputProcessor\OutputFilesProcessor;
use Riverwaysoft\PhpConverter\OutputWriter\OutputWriterInterface;

class GoOutputGenerator
implements OutputGeneratorInterface
class GoOutputGenerator implements OutputGeneratorInterface
{
private OutputFilesProcessor $outputFilesProcessor;

Expand Down Expand Up @@ -87,6 +86,6 @@ private function convert(DtoType $dto, DtoList $dtoList): string
if ($dto->getExpressionType()->isAnyEnum()) {
return $this->enumResolver->resolve($dto);
}
throw new Exception('Unknown expression type '.$dto->getExpressionType()->jsonSerialize());
throw new Exception('Unknown expression type ' . $dto->getExpressionType()->jsonSerialize());
}
}

0 comments on commit 2f1e7e8

Please sign in to comment.