mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-12-02 17:48:27 +01:00
f6193ad5cb
totallyTyped was deprecated in Psalm v4.21.0 [1]. totallyTyped="true" is equivalent to errorLevel="1" and totallyTyped="false" is equivalent to errorLevel="2" plus reportMixedIssues="false" [2]. [1] https://github.com/vimeo/psalm/releases/tag/4.21.0 [2] https://psalm.dev/docs/running_psalm/configuration/#totallytyped
66 lines
1.5 KiB
Gherkin
66 lines
1.5 KiB
Gherkin
Feature: Http Resource types
|
|
Illuminate\Http\Resources have type support
|
|
|
|
Background:
|
|
Given I have the following config
|
|
"""
|
|
<?xml version="1.0"?>
|
|
<psalm errorLevel="1">
|
|
<projectFiles>
|
|
<directory name="."/>
|
|
<ignoreFiles> <directory name="../../vendor"/> </ignoreFiles>
|
|
</projectFiles>
|
|
<plugins>
|
|
<pluginClass class="Psalm\LaravelPlugin\Plugin"/>
|
|
</plugins>
|
|
</psalm>
|
|
"""
|
|
And I have the following code preamble
|
|
"""
|
|
<?php declare(strict_types=1);
|
|
namespace Tests\Psalm\LaravelPlugin\Sandbox;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use Tests\Psalm\LaravelPlugin\Models\User;
|
|
|
|
|
|
/**
|
|
* @property-read User $resource
|
|
*/
|
|
class UserResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->resource->id,
|
|
];
|
|
}
|
|
}
|
|
"""
|
|
|
|
Scenario: Resources can declare wrap
|
|
Given I have the following code
|
|
"""
|
|
|
|
class UserController
|
|
{
|
|
public function __construct()
|
|
{
|
|
UserResource::$wrap = 'items';
|
|
}
|
|
|
|
public function show(User $user): UserResource
|
|
{
|
|
return new UserResource($user);
|
|
}
|
|
}
|
|
"""
|
|
When I run Psalm
|
|
Then I see no errors
|