Completed
Push — master ( 5a9844...cfe9e7 )
by Alex
05:21
created
app/Http/Controllers/CalculatorController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Http\Request;
6 6
 
7
-use App\Http\Requests;
8
-
9 7
 /**
10 8
  * Class CalculatorController
11 9
  * @package App\Http\Controllers
Please login to merge, or discard this patch.
app/Http/routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 |
12 12
 */
13 13
 
14
-Route::get('/', function () {
14
+Route::get('/', function() {
15 15
     return view('welcome');
16 16
 });
17 17
 
@@ -21,4 +21,4 @@  discard block
 block discarded – undo
21 21
 
22 22
 Route::get('calc', 'CalculatorController@index');
23 23
 
24
-Route::post('calc/save','CalculatorController@store');
24
+Route::post('calc/save', 'CalculatorController@store');
Please login to merge, or discard this patch.