Testing_FIT
[ class tree: Testing_FIT ] [ index: Testing_FIT ] [ all elements ]

Source for file Addition.php

Documentation is available at Addition.php

  1. <?php
  2.  
  3. include_once 'Testing/FIT/Fixture/Column.php';
  4.  
  5.  
  6. {
  7.  
  8.     protected $_typeDictionary = array(
  9.                                         'a'     => 'float',
  10.                                         'b'     => 'float',
  11.                                         'sum()' => 'float',
  12.                                     );
  13.  
  14.     public $a;
  15.     public $b;
  16.  
  17.     public function sum(
  18.     {
  19.         return $this->a + $this->b;
  20.     }
  21. }
  22.  
  23. ?>

Documentation generated on Mon, 11 Mar 2019 15:05:05 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.