Show
Ignore:
Timestamp:
01/21/2008 06:56:39 AM (12 months ago)
Author:
Geert
Message:

Cleaning up tons of whitespace:

  • Use tabs for indenting
  • Use spaces for aligning
  • Avoid whitespace at the end of a line
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/application/controllers/examples.php

    r1733 r1766  
    288288                $credit_card = new Payment('Paypal'); 
    289289                $credit_card = new Payment('Authorize'); 
    290                  
     290 
    291291                // You can specify one parameter at a time: 
    292292                $credit_card->login = 'this'; 
     
    299299                // Or you can also set fields with an array and the <Payment.set_fields> method: 
    300300                $credit_card->set_fields(array('login' => 'test', 
    301                                        'first_name' => 'Jeremy', 
    302                                        'last_name' => 'Bush', 
    303                                        'card_num' => '1234567890', 
    304                                        'exp_date' => '0910', 
    305                                        'amount' => '487.41')); 
     301                                               'first_name' => 'Jeremy', 
     302                                               'last_name' => 'Bush', 
     303                                               'card_num' => '1234567890', 
     304                                               'exp_date' => '0910', 
     305                                               'amount' => '487.41')); 
    306306 
    307307                echo '<pre>'.print_r($credit_card, true).'</pre>';