Skip to content

Commit

Permalink
Add 8.5 to version array.
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Nov 9, 2024
1 parent 4207bc1 commit 6e32a3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Form/RfcType.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class RfcType extends AbstractType
/** @param array<string,mixed> $options */
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$versions = ['9.0', '8.4', '8.3', '8.2', '8.1', '8.0', '7.4', '7.3', '7.2', '7.1', '7.0', '5.6', '5.5', '5.4'];
$versions = ['9.0', '8.5', '8.4', '8.3', '8.2', '8.1', '8.0', '7.4', '7.3', '7.2', '7.1', '7.0', '5.6', '5.5', '5.4'];

Check warning on line 22 in src/Form/RfcType.php

View workflow job for this annotation

GitHub Actions / PHP Codesniffer / Coding Standards (8.2)

Line exceeds 120 characters; contains 126 characters

$builder
->add('targetPhpVersion', ChoiceType::class, ['choices' => array_combine($versions, $versions)])
Expand Down

0 comments on commit 6e32a3c

Please sign in to comment.