<?php
class builder
{
	public function add($a, $b, $c)
	{
	}
}

$b = new builder;

$b->add(
	'build_age',
	'choice',
	array( [] )
);
?>
