1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-12 04:36:32 +02:00
Files
php-phpbb/phpBB/phpbb/ucp/controller/webpush.php
2024-02-24 11:58:28 +01:00

28 lines
393 B
PHP

<?php
namespace phpbb\ucp\controller;
use phpbb\config\config;
use Symfony\Component\HttpFoundation\Response;
class webpush
{
/** @var config */
protected $config;
public function __construct(config $config)
{
$this->config = $config;
}
/**
* Handle password reset request
*
* @return Response
*/
public function request(): Response
{
return new Response('foo');
}
}