Skip to content

Commit 9218950

Browse files
ekesmillnutfinnlewis
authored
2.4.0 (#165)
* fix: add return types * feat: drupal 11 support (#164) Accepting PHP 8.4 failure cause by contrib implicit nullable arguments. Next release should have a note that this now _allows_ upgrading of tablefield to the next major (3.0) --------- Co-authored-by: Lee Mills <[email protected]> Co-authored-by: Finn Lewis <[email protected]> Co-authored-by: Lee <[email protected]>
1 parent 04eecca commit 9218950

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"minimum-stability": "dev",
88
"require": {
99
"drupal/entity_hierarchy": "^3.3",
10-
"drupal/tablefield": "^2.2",
10+
"drupal/tablefield": "^2.4 || ^3.0@beta",
1111
"drupal/viewsreference": "^2.0",
1212
"localgovdrupal/localgov_core": "^2.12",
1313
"localgovdrupal/localgov_paragraphs": "^2.3"

localgov_subsites.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: LocalGov Subsites
22
description: Provides subsite sections using page builder paragraph types for LocalGov Drupal.
3-
core_version_requirement: ^9 || ^10
3+
core_version_requirement: ^10 || ^11
44
type: module
55
package: LocalGov Drupal
66

src/EventSubscriber/PageHeaderSubscriber.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class PageHeaderSubscriber implements EventSubscriberInterface {
1616
/**
1717
* {@inheritdoc}
1818
*/
19-
public static function getSubscribedEvents() {
19+
public static function getSubscribedEvents(): array {
2020
return [
2121
PageHeaderDisplayEvent::EVENT_NAME => ['setPageHeader', 0],
2222
];

0 commit comments

Comments
 (0)