Completed
Push — master ( 49cd13...0afab7 )
by Mike
04:03
created

src/Http/Controllers/LaravelCaffeineController.php (1 issue)

1
<?php namespace GeneaLabs\LaravelCaffeine\Http\Controllers;
2
3
use Illuminate\Routing\Controller;
4
5
class LaravelCaffeineController extends Controller
6
{
7
    /**
8
     * Keep the session from timing out.
9
     *
10
     * @return \Symfony\Component\HttpFoundation\Response
11
     */
12
    public function drip()
13
    {
14
        return response('', 204);
0 ignored issues
show
Bug Best Practice introduced by
The expression return response('', 204) also could return the type Illuminate\Contracts\Routing\ResponseFactory which is incompatible with the documented return type Symfony\Component\HttpFoundation\Response.
Loading history...
15
    }
16
}
17