Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
34 | 4 | public function saveNewLogo(UploadedFile $file) |
|
35 | { |
||
36 | 4 | $logoName = (new FilesDomain('images/logo', 'public'))->saveFile($file); |
|
37 | 4 | $logoPath = config('filesystems.disks.public.url').'/images/logo/'; |
|
38 | 4 | $this->updateSettings('app.logo', $logoPath.$logoName); |
|
39 | |||
40 | 4 | return $logoPath.$logoName; |
|
41 | } |
||
43 |