Commit d7ec004a authored by Florent Torregrosa's avatar Florent Torregrosa Committed by Florent Torregrosa
Browse files

Issue #3258766 by Grimreaper: Drupal 10 compatibility. Fix PHPStan.

parent d996a9b9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ This module requires no modules outside of Drupal core.
INSTALLATION
------------

Install and enable this module like any other Drupal 8 module.
Install and enable this module like any other Drupal module.


CONFIGURATION
+4 −4
Original line number Diff line number Diff line
name: Speedboxes
name: 'Speedboxes'
type: module
description: Allows for the checking and unchecking of multiple checkboxes with a drag and drop interface.
core_version_requirement: ^8 || ^9
package: Tools
description: 'Allows for the checking and unchecking of multiple checkboxes with a drag and drop interface.'
core_version_requirement: ^9.2 || ^10
package: 'Tools'
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ class LoadTest extends BrowserTestBase {
  /**
   * Tests that the home page loads with a 200 response.
   */
  public function testLoad() {
  public function testLoad(): void {
    $this->drupalGet(Url::fromRoute('<front>'));
    $this->assertSession()->statusCodeEquals(200);
  }