mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-12-03 18:17:53 +01:00
81 lines
2.2 KiB
Gherkin
81 lines
2.2 KiB
Gherkin
Feature: Container
|
|
The laravel container can be resolved, and it has types
|
|
|
|
Background:
|
|
Given I have the following config
|
|
"""
|
|
<?xml version="1.0"?>
|
|
<psalm totallyTyped="true">
|
|
<projectFiles>
|
|
<directory name="."/>
|
|
<ignoreFiles> <directory name="../../vendor"/> </ignoreFiles>
|
|
</projectFiles>
|
|
<plugins>
|
|
<pluginClass class="Psalm\LaravelPlugin\Plugin"/>
|
|
</plugins>
|
|
</psalm>
|
|
"""
|
|
|
|
Scenario: the container resolves correct types
|
|
Given I have the following code
|
|
"""
|
|
<?php
|
|
class Foo {
|
|
public function applicationResolvesTypes(): \Illuminate\Routing\Redirector
|
|
{
|
|
$application = new \Illuminate\Foundation\Application();
|
|
return $application->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
|
|
"""
|
|
<?php
|
|
class Foo {
|
|
public function appHelperGetContainer(): \Illuminate\Contracts\Foundation\Application {
|
|
return app();
|
|
}
|
|
|
|
public function appHelperResolvesTypes(): \Illuminate\Routing\Redirector
|
|
{
|
|
return app(\Illuminate\Routing\Redirector::class);
|
|
}
|
|
}
|
|
"""
|
|
When I run Psalm
|
|
Then I see no errors
|
|
|
|
Scenario: the resolve function helper resolves correct types
|
|
Given I have the following code
|
|
"""
|
|
<?php
|
|
class Foo {
|
|
|
|
public function resolveHelperResolvesTypes(): \Illuminate\Routing\Redirector
|
|
{
|
|
return resolve(\Illuminate\Routing\Redirector::class);
|
|
}
|
|
}
|
|
"""
|
|
When I run Psalm
|
|
Then I see no errors
|
|
|
|
Scenario: app helper can be chained with make / makeWith
|
|
Given I have the following code
|
|
"""
|
|
<?php
|
|
function testMake(): \Illuminate\Routing\Redirector {
|
|
return app()->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
|