rathena / FluxCP

Invalid class instantiation PHP-W1012
Bug risk
Critical
1 occurrence in this check
Instantiated class Flux_PaypalNotifyRequest not found
 5require_once 'Flux/StripeNotifyRequest.php';
 6if (count($_POST)) {
 7    if (in_array("paypal", Flux::config('PaymentGateway')->toArray())) {
 8        $request = new Flux_PaypalNotifyRequest($_POST); 9        $request->process();
10    }
11