Feature: Eloquent Model types Illuminate\Database\Eloquent\Model has type support Background: Given I have the following config """ """ And I have the following code preamble """ get(); # } # # """ # When I run Psalm # Then I see no errors Scenario: find or fail support Given I have the following code """ function test(): User { return User::findOrFail(1); } """ When I run Psalm Then I see no errors