JEMBOT MAWOT Bypass Shell
<?php
/**
 * Mollie       https://www.mollie.nl
 *
 * @author      Mollie B.V. <info@mollie.nl>
 * @copyright   Mollie B.V.
 * @license     https://github.com/mollie/PrestaShop/blob/master/LICENSE.md
 *
 * @see        https://github.com/mollie/PrestaShop
 * @codingStandardsIgnoreStart
 */
namespace Mollie\Infrastructure\Response;
use Symfony\Component\HttpFoundation\Response as BaseResponse;
if (!defined('_PS_VERSION_')) {
    exit;
}
class Response extends BaseResponse
{
    /**
     * @param mixed $data
     */
    public function __construct($data = null, int $status = 200, array $headers = [])
    {
        parent::__construct($data, $status, $headers);
    }
    public static function respond(string $message, int $status = 200): self
    {
        return new self($message, $status);
    }
}
xxxxx1.0, XXX xxxx