mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-12-02 09:37:47 +01:00
cf9fbd88c0
* Convert DB facade stub method to static
32 lines
762 B
Gherkin
32 lines
762 B
Gherkin
Feature: DB facade alias
|
|
Want to check that the alias of the DB facade works properly
|
|
|
|
Background:
|
|
Given I have the following config
|
|
"""
|
|
<?xml version="1.0"?>
|
|
<psalm totallyTyped="false">
|
|
<projectFiles>
|
|
<directory name="."/>
|
|
<ignoreFiles> <directory name="../../vendor"/> </ignoreFiles>
|
|
</projectFiles>
|
|
<plugins>
|
|
<pluginClass class="Psalm\LaravelPlugin\Plugin"/>
|
|
</plugins>
|
|
</psalm>
|
|
"""
|
|
|
|
Scenario: call the DB facade alias
|
|
Given I have the following code
|
|
"""
|
|
<?php declare(strict_types=1);
|
|
|
|
namespace Tests\Psalm\LaravelPlugin\Sandbox;
|
|
|
|
function test(): void {
|
|
\DB::raw(1);
|
|
}
|
|
"""
|
|
When I run Psalm
|
|
Then I see no errors
|