Skip to content

Commit 3b6f273

Browse files
authored
Merge pull request #82 from viralsolani/analysis-z9eb5a
Apply fixes from StyleCI
2 parents 0e4788e + 28b704b commit 3b6f273

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

app/Http/Controllers/Backend/Settings/SettingsController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function __construct(SettingsRepository $settings)
2525
}
2626

2727
/**
28-
* @param \App\Models\Settings\Setting $setting
28+
* @param \App\Models\Settings\Setting $setting
2929
* @param \App\Http\Requests\Backend\Settings\ManageSettingsRequest $request
3030
*
3131
* @return mixed
@@ -37,7 +37,7 @@ public function edit(Setting $setting, ManageSettingsRequest $request)
3737
}
3838

3939
/**
40-
* @param \App\Models\Settings\Setting $setting
40+
* @param \App\Models\Settings\Setting $setting
4141
* @param \App\Http\Requests\Backend\Settings\UpdateSettingsRequest $request
4242
*
4343
* @return mixed

app/Http/Requests/Backend/Settings/UpdateSettingsRequest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace App\Http\Requests\Backend\Settings;
44

55
use App\Http\Requests\Request;
6-
use App\Models\Settings\Setting;
76

87
/**
98
* Class UpdateSettingsRequest.
@@ -42,7 +41,7 @@ public function messages()
4241
{
4342
return [
4443
'logo.dimensions' => 'Invalid logo - should be minimum 226*48',
45-
'favicon.dimensions' => 'Invalid favicon - should be 16*16'
44+
'favicon.dimensions' => 'Invalid favicon - should be 16*16',
4645
];
4746
}
4847
}

app/Repositories/Backend/Settings/SettingsRepository.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
use App\Exceptions\GeneralException;
66
use App\Models\Settings\Setting;
77
use App\Repositories\BaseRepository;
8-
use DB;
98

109
/**
1110
* Class SettingsRepository.

0 commit comments

Comments
 (0)