Skip to content

Commit

Permalink
Fix phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
paul121 committed Jan 7, 2025
1 parent 9b28cf6 commit 722b126
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

use Drupal\Component\Utility\NestedArray;
use Drupal\Core\Form\FormStateInterface;
use Drupal\taxonomy\Entity\Term;
use Drupal\taxonomy\TermInterface;

/**
* Drilling quick form.
Expand Down Expand Up @@ -70,7 +68,7 @@ public function buildForm(array $form, FormStateInterface $form_state) {
];

// Crop count.
$crop_counts = range(1,10);
$crop_counts = range(1, 10);
$drilling['crop_count'] = [
'#type' => 'select',
'#title' => $this->t('How many crops?'),
Expand All @@ -88,7 +86,7 @@ public function buildForm(array $form, FormStateInterface $form_state) {
'#type' => 'html_tag',
'#tag' => 'div',
'#attributes' => [
'id' => 'farm-rothamsted-crops'
'id' => 'farm-rothamsted-crops',
],
'#tree' => TRUE,
];
Expand Down

0 comments on commit 722b126

Please sign in to comment.