Skip to content

Commit

Permalink
Add Kernel.stubphp (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
enumag committed Oct 8, 2021
1 parent 7b19393 commit de574cc
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Stubs/common/Component/HttpKernel/Kernel.stubphp
@@ -0,0 +1,11 @@
<?php

namespace Symfony\Component\HttpKernel;

class Kernel
{
/**
* @var string
*/
protected $environment;
}
27 changes: 27 additions & 0 deletions tests/acceptance/acceptance/Kernel.feature
@@ -0,0 +1,27 @@
@symfony-5
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 de574cc

Please sign in to comment.