PK

ADDRLIN : /home/anibklip/aelogifts.com/razorpay/src/
FLL :
Current File : /home/anibklip/aelogifts.com/razorpay/src/FundAccount.php

<?php

namespace Razorpay\Api;

use Requests;


class FundAccount extends Entity
{
    /**
     * Create a Fund Account .
     *
     * @param array $attributes
     *
     * @return FundAccount
     */
    public function create($attributes = array())
    {
       return parent::create($attributes);
    }

    /**
     * Fetch all Fund Accounts
     *
     * @param array $options
     *
     * @return Collection
     */
    public function all($options = array())
    {
        return parent::all($options);
    }

}


PK 99