Completed
Push — master ( 4f68a8...3694fa )
by Anton
01:24
created

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

Labels
Severity

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;
15
16
use Illuminate\Contracts\Support\Responsable as ResponsableContract;
17
use Illuminate\Http\Response as IlluminateResponse;
18
use Illuminate\Support\Facades\Config;
19
20
final class AppResponse 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();
31
    }
32
33
    private function toHtml(): IlluminateResponse
34
    {
35
        return response()->view('paket::app', [
0 ignored issues
show
The method view does only exist in Illuminate\Contracts\Routing\ResponseFactory, but not in Illuminate\Http\Response.

It seems like the method you are trying to call exists only in some of the possible types.

Let’s take a look at an example:

class A
{
    public function foo() { }
}

class B extends A
{
    public function bar() { }
}

/**
 * @param A|B $x
 */
function someFunction($x)
{
    $x->foo(); // This call is fine as the method exists in A and B.
    $x->bar(); // This method only exists in B and might cause an error.
}

Available Fixes

  1. Add an additional type-check:

    /**
     * @param A|B $x
     */
    function someFunction($x)
    {
        $x->foo();
    
        if ($x instanceof B) {
            $x->bar();
        }
    }
    
  2. Only allow a single type to be passed if the variable comes from a parameter:

    function someFunction(B $x) { /** ... */ }
    
Loading history...
36
            'cssFile' => 'app.css',
37
            'paketScriptVariables' => [
38
                'baseUri' => Config::get('paket.base_uri'),
39
            ],
40
        ]);
41
    }
42
}
43