Skip to content

Commit

Permalink
chore: Return type
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeriolino committed Nov 8, 2024
1 parent c69c855 commit 96026d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Form/ChartType.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function __construct(
) {
}

public function buildForm(FormBuilderInterface $builder, array $options)
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$domain = NovosgaReportsBundle::getDomain();
$today = new DateTime('today');
Expand Down Expand Up @@ -92,7 +92,7 @@ public function configureOptions(OptionsResolver $resolver): void
]);
}

public function getBlockPrefix()
public function getBlockPrefix(): string
{
return '';
}
Expand Down
4 changes: 2 additions & 2 deletions src/Form/ReportType.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __construct(
) {
}

public function buildForm(FormBuilderInterface $builder, array $options)
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$domain = NovosgaReportsBundle::getDomain();
$today = new DateTime('today');
Expand Down Expand Up @@ -105,7 +105,7 @@ public function configureOptions(OptionsResolver $resolver): void
]);
}

public function getBlockPrefix()
public function getBlockPrefix(): string
{
return '';
}
Expand Down

0 comments on commit 96026d0

Please sign in to comment.