Skip to content
Snippets Groups Projects

fix the multiple implicit nullable variable in php 8.4

8 files
+ 12
12
Compare changes
  • Side-by-side
  • Inline
Files
8
@@ -20,7 +20,7 @@ class AccessDenied extends RabbitHoleBehaviorPluginBase {
/**
* {@inheritdoc}
*/
public function performAction(EntityInterface $entity, Response $current_response = NULL) {
public function performAction(EntityInterface $entity, ?Response $current_response = NULL) {
throw new AccessDeniedHttpException();
}
Loading