Skip to content

Commit

Permalink
Fix some styling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewying committed Feb 2, 2019
1 parent ca50e04 commit a5a2f16
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 24 deletions.
14 changes: 2 additions & 12 deletions app/Http/Controllers/Auth/LoginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,8 @@

class LoginController extends Controller
{
/*
|--------------------------------------------------------------------------
| Login Controller
|--------------------------------------------------------------------------
|
| This controller handles authenticating users for the application and
| redirecting them to your home screen. The controller uses a trait
| to conveniently provide its functionality to your applications.
|
*/

use AuthenticatesUsers, WithAuthenticationForms;
use AuthenticatesUsers;
use WithAuthenticationForms;

/**
* Where to redirect users after login.
Expand Down
14 changes: 2 additions & 12 deletions app/Http/Controllers/Auth/RegisterController.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,8 @@

class RegisterController extends Controller
{
/*
|--------------------------------------------------------------------------
| Register Controller
|--------------------------------------------------------------------------
|
| This controller handles the registration of new users as well as their
| validation and creation. By default this controller uses a trait to
| provide this functionality without requiring any additional code.
|
*/

use RegistersUsers, WithAuthenticationForms;
use RegistersUsers;
use WithAuthenticationForms;

/**
* @var \Jano\Contracts\UserContract
Expand Down
1 change: 1 addition & 0 deletions app/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
namespace Jano\Http\Controllers;

use Carbon\Carbon;
use Kris\LaravelFormBuilder\FormBuilder;
use Jano\Http\Traits\WithAuthenticationForms;
use Setting;

Expand Down
File renamed without changes.

0 comments on commit a5a2f16

Please sign in to comment.