Skip to content
Snippets Groups Projects

fix the multiple implicit nullable variable in php 8.4

5 files
+ 5
5
Compare changes
  • Side-by-side
  • Inline
Files
5
@@ -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