Skip to content

Commit

Permalink
Adjust repositories generator
Browse files Browse the repository at this point in the history
Add missing getFlattenedFields functions.
  • Loading branch information
iquito committed May 10, 2020
1 parent 5f0ccb6 commit 3ee52ad
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/Generate/RepositoriesGenerateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,38 @@ public function getFlattenedFields(): array
return $this->selectImplementation->getFlattenedFields();
}
/**
* @return int[]
*/
public function getFlattenedIntegerFields(): array
{
return $this->selectImplementation->getFlattenedIntegerFields();
}
/**
* @return float[]
*/
public function getFlattenedFloatFields(): array
{
return $this->selectImplementation->getFlattenedFloatFields();
}
/**
* @return string[]
*/
public function getFlattenedStringFields(): array
{
return $this->selectImplementation->getFlattenedStringFields();
}
/**
* @return bool[]
*/
public function getFlattenedBooleanFields(): array
{
return $this->selectImplementation->getFlattenedBooleanFields();
}
public function getIterator(): SelectIterator
{
return new SelectIterator($this->selectImplementation->getIterator());
Expand Down

0 comments on commit 3ee52ad

Please sign in to comment.