Ignore:
Timestamp:
Jul 30, 2014 10:43:49 PM (10 years ago)
Author:
anonymous
Message:

Changed private methods and properties to protected. A few minor bug fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/AuthorizeNet.inc.php

    r479 r484  
    6262
    6363    public $post_url = ''; // The URL to post data to.
    64     private $_results = array();
    65     private $_params = array();
    66     private $_default_params = array(
     64    protected $_results = array();
     65    protected $_params = array();
     66    protected $_default_params = array(
    6767        'x_version'         => '3.1',
    6868        'x_relay_response'  => 'FALSE',
     
    8080
    8181    // Array of response names. Used in the results array.
    82     private $_result_fields = Array(
     82    protected $_result_fields = Array(
    8383        'x_response_code',
    8484        'x_response_subcode',
     
    297297     * @return integer      Transaction result code.
    298298     */
    299     private function _processResult($result)
     299    protected function _processResult($result)
    300300    {
    301301        $this->_results = Array();
Note: See TracChangeset for help on using the changeset viewer.