Skip to content

Commit

Permalink
add missing php doc
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Jan 1, 2025
1 parent d1d1623 commit f749218
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Generator/Server/ServerAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,12 @@ abstract protected function getControllerPath(): string;
abstract protected function getModelPath(): string;
abstract protected function getFileExtension(): string;

/**
* @param array<string, string> $imports
*/
abstract protected function generateHeader(File $file, array $imports): string;
abstract protected function generateFooter(File $file): string;

abstract protected function generateArgumentPath(string $rawName, string $variableName, string $type, PropertyTypeAbstract|ContentType $argumentType): string;
abstract protected function generateArgumentQuery(string $rawName, string $variableName, string $type, PropertyTypeAbstract|ContentType $argumentType): string;
abstract protected function generateArgumentHeader(string $rawName, string $variableName, string $type, PropertyTypeAbstract|ContentType $argumentType): string;
Expand Down

0 comments on commit f749218

Please sign in to comment.