mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-12 04:36:32 +02:00
28 lines
393 B
PHP
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');
|
|
}
|
|
}
|