cybercog /
laravel-paket
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\Api\Jobs\Collect; |
||
| 15 | |||
| 16 | use Illuminate\Contracts\Support\Responsable as ResponsableContract; |
||
| 17 | use Illuminate\Http\JsonResponse; |
||
| 18 | use Illuminate\Http\Request; |
||
| 19 | |||
| 20 | final class Response implements ResponsableContract |
||
| 21 | { |
||
| 22 | private $jobs; |
||
| 23 | |||
| 24 | public function __construct(iterable $jobs) |
||
| 25 | { |
||
| 26 | $this->jobs = $jobs; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Create an HTTP response that represents the object. |
||
| 31 | * |
||
| 32 | * @param \Illuminate\Http\Request $request |
||
| 33 | * @return \Symfony\Component\HttpFoundation\Response |
||
| 34 | */ |
||
| 35 | public function toResponse($request) |
||
| 36 | { |
||
| 37 | return $this->toJson($request); |
||
| 38 | } |
||
| 39 | |||
| 40 | private function toJson(Request $request): JsonResponse |
||
|
0 ignored issues
–
show
|
|||
| 41 | { |
||
| 42 | $jobs = []; |
||
| 43 | foreach ($this->jobs as $job) { |
||
| 44 | $jobs[] = $job->toArray(); |
||
| 45 | } |
||
| 46 | |||
| 47 | return response()->json($jobs); |
||
|
0 ignored issues
–
show
The method
json 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
Loading history...
|
|||
| 48 | } |
||
| 49 | } |
||
| 50 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.