/home/edulekha/crm.edulekha.com/application/vendor/omnipay/braintree/src/Message/PlanResponse.php
<?php
/**
 * PlanResponse class.
 */
namespace Omnipay\Braintree\Message;

class PlanResponse extends Response
{
    /**
     * Returns array of Braintree_Plans objects with available plans
     * If there aren't any plans created it will return empty array.
     *
     * @return array
     */
    public function getPlansData()
    {
        if (isset($this->data)) {
            return $this->data;
        }

        return [];
    }
}