Completed
Push — master ( 20d2a7...83241b )
by Anton
01:20
created

src/Http/Controllers/App/Response.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/*
4
 * This file is part of Laravel Paket.
5
 *
6
 * (c) Anton Komarev <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace Cog\Laravel\Paket\Http\Controllers\App;
15
16
use Illuminate\Contracts\Support\Responsable as ResponsableContract;
17
use Illuminate\Http\Request;
18
use Illuminate\Http\Response as IlluminateResponse;
19
20
final class Response implements ResponsableContract
21
{
22
    /**
23
     * Create an HTTP response that represents the object.
24
     *
25
     * @param  \Illuminate\Http\Request $request
26
     * @return \Symfony\Component\HttpFoundation\Response
27
     */
28
    public function toResponse($request)
29
    {
30
        return $this->toHtml($request);
31
    }
32
33
    private function toHtml(Request $request): IlluminateResponse
0 ignored issues
show
The parameter $request is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
34
    {
35
        return response()->view('paket::app', [
36
            'cssFile' => 'app.css',
37
            'paketScriptVariables' => [
38
                'path' => 'paket',
39
            ],
40
        ]);
41
    }
42
}
43