Skip to content
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/Http/Middleware/Authenticate.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protected function redirectTo($request)
*/
public function handle($request, Closure $next)
{
if (!$this->auth->check()) {
if (! $this->auth->check()) {
return redirect()->to('/login')
->with('status', 'success')
->with('message', 'Please login.');
Expand Down
4 changes: 2 additions & 2 deletions app/Traits/ActivationTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ public function initiateEmailActivation(User $user)
}

/**
* Validate the Users Email
* Validate the Users Email.
*
* @param User $user
*
* @return boolean
* @return bool
*/
protected function validateEmail(User $user)
{
Expand Down
4 changes: 2 additions & 2 deletions app/Traits/CaptchaTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
trait CaptchaTrait
{
/**
* Check Google Captcha Passed or Failed
* Check Google Captcha Passed or Failed.
*
* @return boolean
* @return bool
*/
public function captchaCheck()
{
Expand Down