<?php

include_once 'Testing/FIT/Fixture/Column.php';


class Math_Addition extends Testing_FIT_Fixture_Column
{

    protected $_typeDictionary = array(
                                        'a'     => 'float',
                                        'b'     => 'float',
                                        'sum()' => 'float',
                                    );

    public $a;
    public $b;

    public function sum() 
    {
        return $this->a + $this->b;
    }
}

?>