Skip to content

Commit

Permalink
Fix php-cs-fixer errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Kreyu committed Jun 28, 2024
1 parent 155203c commit 78d829f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/Column/Type/EnumColumnType.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@

final class EnumColumnType extends AbstractColumnType
{
public function __construct(private ?TranslatorInterface $translator)
{
public function __construct(
private ?TranslatorInterface $translator,
) {
}

public function configureOptions(OptionsResolver $resolver): void
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/config/columns.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
use Kreyu\Bundle\DataTableBundle\Column\Type\DateColumnType;
use Kreyu\Bundle\DataTableBundle\Column\Type\DatePeriodColumnType;
use Kreyu\Bundle\DataTableBundle\Column\Type\DateTimeColumnType;
use Kreyu\Bundle\DataTableBundle\Column\Type\EnumColumnType;
use Kreyu\Bundle\DataTableBundle\Column\Type\FormColumnType;
use Kreyu\Bundle\DataTableBundle\Column\Type\LinkColumnType;
use Kreyu\Bundle\DataTableBundle\Column\Type\MoneyColumnType;
use Kreyu\Bundle\DataTableBundle\Column\Type\EnumColumnType;
use Kreyu\Bundle\DataTableBundle\Column\Type\NumberColumnType;
use Kreyu\Bundle\DataTableBundle\Column\Type\ResolvedColumnTypeFactory;
use Kreyu\Bundle\DataTableBundle\Column\Type\ResolvedColumnTypeFactoryInterface;
Expand Down

0 comments on commit 78d829f

Please sign in to comment.