Skip to content

Commit

Permalink
fix phpcs use statements sorted alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
WengerK committed Apr 4, 2024
1 parent 75d65f3 commit 49f4a48
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
drupal_version: ['9.5', '10.0', '10.1', '10.2', '11.0']
drupal_version: ['9.5', '10.0', '10.1', '10.2']
module: [ 'vercel_deploy' ]

steps:
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- add coverage of Drupal 10.2.x
- add coverage of Drupal 11.0-dev

### Removed
- drop tests support on Drupal <= 9.4

### Fixed
- fix phpcs use statements sorted alphabetically

## [1.1.0] - 2022-12-02
### Added
- add official support of drupal 9.5 & 10.0
Expand Down
6 changes: 3 additions & 3 deletions src/Form/DeployHooksForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

namespace Drupal\vercel_deploy\Form;

use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Form\ConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Core\Url;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Url;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
* Provides the Deploy Hooks confirmation form.
Expand Down
2 changes: 1 addition & 1 deletion src/Form/SettingsForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Drupal\vercel_deploy\Form;

use Drupal\Component\Utility\Xss;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Component\Utility\Xss;

/**
* Configure Vercel Deploy settings form.
Expand Down

0 comments on commit 49f4a48

Please sign in to comment.