Feature: Container The laravel container can be resolved, and it has types Background: Given I have the following config """ """ Scenario: the container resolves correct types Given I have the following code """ make(\Illuminate\Routing\Redirector::class); } } """ When I run Psalm Then I see no errors Scenario: the app function helper resolves correct types Given I have the following code """ make(\Illuminate\Routing\Redirector::class); } function testMakeWith(): \Illuminate\Routing\Redirector { return app()->makeWith(\Illuminate\Routing\Redirector::class); } """ When I run Psalm Then I see no errors