PHP code example of softify / payum-przelewy24-bundle

1. Go to this page and download the library: Download softify/payum-przelewy24-bundle library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

softify / payum-przelewy24-bundle example snippets


    return [
        Softify\PayumPrzelewy24Bundle\PayumPrzelewy24Bundle::class => ['all' => true],
    ]


namespace App\Entity;

use Softify\PayumPrzelewy24Bundle\Entity\Payment as BasePayment;

class Payment extends BasePayment
{
}



namespace App\Entity;

use Softify\PayumPrzelewy24Bundle\Entity\PaymentToken as BasePaymentToken;

class PaymentToken extends BasePaymentToken
{
}