mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			800 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			800 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace FireflyIII\Database;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Model as Eloquent;
 | |
| 
 | |
| 
 | |
| /**
 | |
|  * Interface CUD
 | |
|  *
 | |
|  * @package FireflyIII\Database
 | |
|  */
 | |
| interface CUDInterface
 | |
| {
 | |
| 
 | |
|     /**
 | |
|      * @param Eloquent $model
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     public function destroy(Eloquent $model);
 | |
| 
 | |
|     /**
 | |
|      * @param array $data
 | |
|      *
 | |
|      * @return Eloquent
 | |
|      */
 | |
|     public function store(array $data);
 | |
| 
 | |
|     /**
 | |
|      * @param Eloquent $model
 | |
|      * @param array    $data
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     public function update(Eloquent $model, array $data);
 | |
| 
 | |
|     /**
 | |
|      * Validates an array. Returns an array containing MessageBags
 | |
|      * errors/warnings/successes.
 | |
|      *
 | |
|      * @param array $model
 | |
|      *
 | |
|      * @return array
 | |
|      */
 | |
|     public function validate(array $model);
 | |
| 
 | |
| }
 |