| 1 | <?php namespace App\Modules\V1\Core\Repositories;  | 
            ||
| 5 | class SettingRepository extends AbstractRepository  | 
            ||
| 6 | { | 
            ||
| 7 | /**  | 
            ||
| 8 | * Return the model full namespace.  | 
            ||
| 9 | *  | 
            ||
| 10 | * @return string  | 
            ||
| 11 | */  | 
            ||
| 12 | protected function getModel()  | 
            ||
| 16 | |||
| 17 | /**  | 
            ||
| 18 | * Save list of settings.  | 
            ||
| 19 | *  | 
            ||
| 20 | * @param array $data  | 
            ||
| 21 | * @return void  | 
            ||
| 22 | */  | 
            ||
| 23 | public function saveMany(array $data)  | 
            ||
| 32 | }  | 
            ||
| 33 |