Completed
Push — master ( ca9e28...7c3f3b )
by Arthur
08:51
created
app/Http/Controllers/SettingsController.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -5,19 +5,19 @@
 block discarded – undo
5 5
 class SettingsController extends Controller
6 6
 {
7 7
 
8
-	/**
9
-	 * Store a newly created resource in storage.
10
-	 *
11
-	 * @return \Illuminate\Http\RedirectResponse
12
-	 */
13
-	public function update()
14
-	{
8
+    /**
9
+     * Store a newly created resource in storage.
10
+     *
11
+     * @return \Illuminate\Http\RedirectResponse
12
+     */
13
+    public function update()
14
+    {
15 15
         $input = \Input::only('key', 'value');
16 16
 
17 17
         Settings::change($input['key'], $input['value']);
18 18
 
19 19
         \Notification::success("Setting updated");
20 20
         return redirect()->back()->withInput();
21
-	}
21
+    }
22 22
 
23 23
 }
Please login to merge, or discard this patch.