Skip to content
Snippets Groups Projects
Commit 42ab75aa authored by Saul Willers's avatar Saul Willers Committed by dpi
Browse files

Issue #3343024 by fenstrat, dpi: Additional D10 updates

parent 5ade7467
No related branches found
No related tags found
No related merge requests found
...@@ -8,10 +8,9 @@ deploystacks: ...@@ -8,10 +8,9 @@ deploystacks:
strategy: depend strategy: depend
parallel: parallel:
matrix: matrix:
- DRUPAL_CORE_CONSTRAINT: ["9.4"]
PHP_VERSION: ["8.1", "8.0"]
MYSQL_VERSION: ["8"]
# Drupal 10 requires PHP 8.1
- DRUPAL_CORE_CONSTRAINT: ["10.0"] - DRUPAL_CORE_CONSTRAINT: ["10.0"]
PHP_VERSION: ["8.1"] PHP_VERSION: ["8.1"]
MYSQL_VERSION: ["8"] MYSQL_VERSION: ["8"]
- DRUPAL_CORE_CONSTRAINT: ["10.1"]
PHP_VERSION: ["8.1", "8.2"]
MYSQL_VERSION: ["8"]
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
"description": "New hooks", "description": "New hooks",
"type": "drupal-module", "type": "drupal-module",
"require": { "require": {
"php": ">=8.0", "php": ">=8.1",
"drupal/core": "^9 || ^10" "drupal/core": "^10"
} }
} }
name: Hux name: Hux
type: module type: module
description: New hooks description: New hooks
core_version_requirement: '>=9' core_version_requirement: '>=10'
php: 8.0 php: 8.1
package: System package: System
...@@ -111,13 +111,6 @@ trait HuxModuleHandlerProxyTrait { ...@@ -111,13 +111,6 @@ trait HuxModuleHandlerProxyTrait {
return $this->inner->getHookInfo(); return $this->inner->getHookInfo();
} }
/**
* {@inheritdoc}
*/
public function getImplementations($hook) {
return $this->inner->getImplementations($hook);
}
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
...@@ -139,13 +132,6 @@ trait HuxModuleHandlerProxyTrait { ...@@ -139,13 +132,6 @@ trait HuxModuleHandlerProxyTrait {
return $this->inner->hasImplementations($hook, $modules); return $this->inner->hasImplementations($hook, $modules);
} }
/**
* {@inheritdoc}
*/
public function implementsHook($module, $hook) {
return $this->inner->implementsHook($module, $hook);
}
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment