for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Auth\AuthenticationException;
use Illuminate\Contracts\Auth\Factory as Auth;
class Authenticate
{
/**
* The authentication factory instance.
*
* @var \Illuminate\Contracts\Auth\Factory
*/
protected $auth;
* Create a new middleware instance.
* @param \Illuminate\Contracts\Auth\Factory $auth
public function __construct(Auth $auth)
$this->auth = $auth;
}
* Handle an incoming request.
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @param string[] ...$guards
* @return mixed
* @throws \Illuminate\Auth\AuthenticationException
public function handle($request, Closure $next, ...$guards)
if ($this->auth->user() != null && $this->auth->user()->verified == 0) {
auth()->logout();
flash()->error(trans('auth.account_not_activated'));
flash()
null
This check looks for function or method calls that always return null and whose return value is used.
class A { function getObject() { return null; } } $a = new A(); if ($a->getObject()) {
The method getObject() can return nothing but null, so it makes no sense to use the return value.
getObject()
The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.
return redirect()->back();
$this->authenticate($guards);
return $next($request);
* Determine if the user is logged in to any of the given guards.
* @param array $guards
* @return void
protected function authenticate(array $guards)
if (empty($guards)) {
return $this->auth->authenticate();
foreach ($guards as $guard) {
if ($this->auth->guard($guard)->check()) {
return $this->auth->shouldUse($guard);
$this->auth->shouldUse($guard)
Illuminate\Auth\AuthManager::shouldUse()
throw new AuthenticationException;
This check looks for function or method calls that always return null and whose return value is used.
The method
getObject()
can return nothing but null, so it makes no sense to use the return value.The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.