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\JsonResponse as BaseJsonResponse;
if (!defined('_PS_VERSION_')) {
    exit;
}
class JsonResponse extends BaseJsonResponse
{
    /**
     * @param mixed $data
     */
    public function __construct($data = null, int $status = 200, array $headers = [])
    {
        parent::__construct($data, $status, $headers);
    }
    public static function success(array $data, int $status = 200): self
    {
        return new self([
            'success' => true,
            'errors' => [],
            'data' => $data,
        ], $status);
    }
    /**
     * @param string|array $error
     */
    public static function error($error, int $status = 400): self
    {
        if (!is_array($error)) {
            $error = [$error];
        }
        return new self([
            'success' => false,
            'errors' => $error,
            'data' => [],
        ], $status);
    }
}
xxxxx1.0, XXX xxxx