gossi\codegen\generator\builder\parts\RoutineBuilderPart::writeBody PHP Method

writeBody() protected method

protected writeBody ( gossi\codegen\model\RoutineInterface $model )
$model gossi\codegen\model\RoutineInterface
    protected function writeBody(RoutineInterface $model)
    {
        $this->writer->writeln(' {')->indent();
        $this->writer->writeln(trim($model->getBody()));
        $this->writer->outdent()->rtrim()->writeln('}');
    }