1 | <?php |
||
11 | class Field { |
||
12 | /** |
||
13 | * A proxy for the abstract field factory method. |
||
14 | * |
||
15 | * @see Carbon_Fields\Field\Field::factory() |
||
16 | **/ |
||
17 | public static function factory( $type, $name, $label = null ) { |
||
20 | |||
21 | /** |
||
22 | * An alias of factory(). |
||
23 | * |
||
24 | * @see Field::factory() |
||
25 | **/ |
||
26 | public static function make( $type, $name, $label = null ) { |
||
29 | } |
||
30 |