Pheasant\Tests\Examples\Animal::initialize PHP Method

initialize() public static method

public static initialize ( $builder, $pheasant )
    public static function initialize($builder, $pheasant)
    {
        $pheasant->register(__CLASS__, new RowMapper('animal'));
        $builder->properties(array('id' => new Types\IntegerType(11, 'primary auto_increment'), 'type' => new Types\StringType(255, 'required default=llama'), 'name' => new Types\StringType(255)));
    }