mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			692 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			692 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| declare(strict_types = 1);
 | |
| namespace FireflyIII\Helpers\Csv\Converter;
 | |
| 
 | |
| /**
 | |
|  * Interface ConverterInterface
 | |
|  *
 | |
|  * @package FireflyIII\Helpers\Csv\Converter
 | |
|  */
 | |
| interface ConverterInterface
 | |
| {
 | |
| 
 | |
|     /**
 | |
|      * @return mixed
 | |
|      */
 | |
|     public function convert();
 | |
| 
 | |
|     /**
 | |
|      * @param array $data
 | |
|      */
 | |
|     public function setData(array $data);
 | |
| 
 | |
|     /**
 | |
|      * @param string $field
 | |
|      *
 | |
|      */
 | |
|     public function setField($field);
 | |
| 
 | |
|     /**
 | |
|      * @param int $index
 | |
|      */
 | |
|     public function setIndex($index);
 | |
| 
 | |
|     /**
 | |
|      * @param array $mapped
 | |
|      */
 | |
|     public function setMapped($mapped);
 | |
| 
 | |
|     /**
 | |
|      * @param string $value
 | |
|      */
 | |
|     public function setValue($value);
 | |
| 
 | |
| }
 |