Skip to content

Commit

Permalink
Create Kernel.feature
Browse files Browse the repository at this point in the history
  • Loading branch information
enumag committed Oct 8, 2021
1 parent 97d813d commit 0bb8d71
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions tests/acceptance/acceptance/Kernel.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
@symfony-common
Feature: Kernel

Background:
Given I have Symfony plugin enabled

Scenario: MixedOperand error about $environment is not raised
Given I have the following code
"""
<?php
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
abstract class Kernel extends BaseKernel
{
use MicroKernelTrait;
protected function configureContainer(ContainerConfigurator $container): void
{
$container->import('../config/{packages}/' . $this->environment . '/*.yaml');
}
}
"""
When I run Psalm
Then I see no errors

0 comments on commit 0bb8d71

Please sign in to comment.