Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply fixes from StyleCI #19

Merged
merged 1 commit into from
Feb 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/Helpers/Helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ public static function gravatar($email, $connection = 'default')

return $url.'/'.md5(strtolower(trim($email))).($query ? "?$query" : '').'?s=200';
}
}
}
2 changes: 1 addition & 1 deletion app/Http/Controllers/Admin/DashboardController.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ public function __invoke()
{
return view('admin.dashboard.index');
}
}
}
2 changes: 1 addition & 1 deletion app/Http/Controllers/Admin/ProfileController.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ public function update(Request $request)

return back()->with('success', trans('notifications.update_success', ['entity' => 'Profile']));
}
}
}
2 changes: 1 addition & 1 deletion app/Listeners/LogFailedLogin.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ public function handle(Failed $event)
])
->log('failed_login');
}
}
}
2 changes: 1 addition & 1 deletion app/Listeners/LogRegisteredUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ public function handle(Registered $event)
])
->log('register');
}
}
}
2 changes: 1 addition & 1 deletion app/Listeners/LogSuccessfulLogin.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ public function handle(Login $event)
])
->log('login');
}
}
}
2 changes: 1 addition & 1 deletion app/Meta/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
class Constants
{
//
}
}
2 changes: 1 addition & 1 deletion config/secure-headers.php
Original file line number Diff line number Diff line change
Expand Up @@ -221,4 +221,4 @@
],
],

];
];
2 changes: 1 addition & 1 deletion resources/lang/en/notifications.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

'update_success' => ':entity has been updated.',

];
];
2 changes: 1 addition & 1 deletion routes/admin/admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
Route::get('/dashboard', 'DashboardController')->name('dashboard');
Route::get('/profile', 'ProfileController@index')->name('profile');
Route::post('/profile', 'ProfileController@update');
});
});
2 changes: 1 addition & 1 deletion routes/auth/auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Route::post('password/email', 'ForgotPasswordController@sendResetLinkEmail')->name('password.email');
Route::get('password/reset/{token}', 'ResetPasswordController@showResetForm')->name('password.reset');
Route::post('password/reset', 'ResetPasswordController@reset');
});
});
2 changes: 1 addition & 1 deletion routes/public/public.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

Route::view('/', 'public.index');
Route::view('/', 'public.index');
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
Helper::includeRouteFiles(__DIR__.'/public/');

// Admin Routes...
Helper::includeRouteFiles(__DIR__.'/admin/');
Helper::includeRouteFiles(__DIR__.'/admin/');