19 lines
		
	
	
		
			333 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
		
			333 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * PHP表单生成器
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @package  FormBuilder
							 | 
						||
| 
								 | 
							
								 * @author   xaboy <xaboy2005@qq.com>
							 | 
						||
| 
								 | 
							
								 * @version  2.0
							 | 
						||
| 
								 | 
							
								 * @license  MIT
							 | 
						||
| 
								 | 
							
								 * @link     https://github.com/xaboy/form-builder
							 | 
						||
| 
								 | 
							
								 * @document http://php.form-create.com
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace FormBuilder\Contract;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								interface OptionComponentInterface
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    public function getOption();
							 | 
						||
| 
								 | 
							
								}
							 |