Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
26 | 4 | public function saveNewLogo(UploadedFile $file) |
|
27 | { |
||
28 | 4 | $logoName = (new FilesDomain('images/logo', 'public'))->saveFile($file); |
|
29 | 4 | $logoPath = config('filesystems.disks.public.url').'/images/logo/'; |
|
30 | 4 | $this->updateSettings('app.logo', $logoPath.$logoName); |
|
31 | |||
32 | 4 | return $logoPath.$logoName; |
|
33 | } |
||
35 |