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

initialize() public static method

public static initialize ( $builder, $pheasant )
    public static function initialize($builder, $pheasant)
    {
        $pheasant->register(__CLASS__, new RowMapper('post'));
        $builder->properties(array('postid' => new Types\IntegerType(11, 'primary auto_increment'), 'title' => new Types\StringType(255, 'required'), 'subtitle' => new Types\StringType(255)));
    }