1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-18 14:31:19 +02:00

[ticket/17487] Add wrapper method to add headers to interface

PHPBB-17487
This commit is contained in:
rxu
2025-04-03 22:15:37 +07:00
parent 21314a34a6
commit cebc19f2ed
4 changed files with 37 additions and 10 deletions

View File

@@ -481,4 +481,12 @@ abstract class base implements messenger_interface
$this->setup_template();
$this->template->set_custom_style($path_name, $paths);
}
/**
* {@inheritdoc}
*/
public function header(string $header_name, mixed $header_value): void
{
return;
}
}