Skip to content

Commit

Permalink
fix easy-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Feb 5, 2023
1 parent 4230007 commit 137bbe5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions easy-ci.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@

declare(strict_types=1);

use Symplify\AutowireArrayParameter\DependencyInjection\CompilerPass\AutowireArrayParameterCompilerPass;
use Symplify\EasyCI\Config\EasyCIConfig;
use Symplify\PHPStanExtensions\TypeExtension\FuncCall\NativeFunctionDynamicFunctionReturnTypeExtension;
use Symplify\PHPStanExtensions\TypeExtension\MethodCall\ContainerGetReturnTypeExtension;
use Symplify\PHPStanExtensions\TypeExtension\MethodCall\SplFileInfoTolerantReturnTypeExtension;

return static function (EasyCIConfig $easyCIConfig): void {
$easyCIConfig->typesToSkip([
AutowireArrayParameterCompilerPass::class,
NativeFunctionDynamicFunctionReturnTypeExtension::class,
ContainerGetReturnTypeExtension::class,
SplFileInfoTolerantReturnTypeExtension::class,
]);
};

0 comments on commit 137bbe5

Please sign in to comment.