symplify/phpstan-extensions

Pre-escaped error messages in 'symplify' error format, container aware test case and other useful extensions for PHPStan

Installs: 3 848 624

Dependents: 75

Suggesters: 0

Security: 0

Stars: 28

Watchers: 3

Forks: 1

Open Issues: 0

Type:phpstan-extension

11.4.3 2024-01-05 11:11 UTC

This package is auto-updated.

Last update: 2024-04-05 11:42:17 UTC


README

Downloads total

Install

composer require symplify/phpstan-extensions --dev

Update config:

# phpstan.neon
includes:
    - 'vendor/symplify/phpstan-extensions/config/config.neon'

Use

Symplify Error Formatter

Works best with anthraxx/intellij-awesome-console

  • Do you want to click the error and get right to the line in the file it's reported at?
  • Do you want to copy-paste regex escaped error to your ignoreErrors?
vendor/bin/phpstan analyse src --level max --error-format symplify

------------------------------------------------------------------------------------------
src/Command/ReleaseCommand.php:51
------------------------------------------------------------------------------------------
- "Call to an undefined method Symplify\\Command\\ReleaseCommand\:\:nonExistingCall\(\)"
------------------------------------------------------------------------------------------

Return Type Extensions

Symplify\PHPStanExtensions\ReturnTypeExtension\ContainerGetTypeExtension

With Symfony container and type as an argument, you always know the same type is returned:

use Symfony\Component\DependencyInjection\Container;

/** @var Container $container */
// PHPStan: object ❌
$container->get(Type::class);
// Reality: Type ✅
$container->get(Type::class);

// same for in-controller/container-aware context
$this->get(Type::class);

Symplify\PHPStanExtensions\ReturnTypeExtension\KernelGetContainerAfterBootReturnTypeExtension

After Symfony Kernel boot, getContainer() always returns the container:

use Symfony\Component\HttpKernel\Kernel;

final class AppKernel extends Kernel
{
    // ...
}

$kernel = new AppKernel('prod', false);
$kernel->boot();

// PHPStan: null|ContainerInterface ❌
$kernel->getContainer();
// Reality: ContainerInterface ✅
$kernel->getContainer();
// Reality: ContainerInterface ✅

Symplify\PHPStanExtensions\ReturnTypeExtension\SplFileInfoTolerantReturnTypeExtension

Symfony Finder finds only existing files (obviously), so the getRealPath() always return string:

use Symfony\Component\Finder\Finder;

$finder = new Finder();

foreach ($finder as $fileInfo) {
    // PHPStan: false|string ❌
    $fileInfo->getRealPath();
    // Reality: string ✅
    $fileInfo->getRealPath();
}

Report Issues

In case you are experiencing a bug or want to request a new feature head over to the Symplify monorepo issue tracker

Contribute

The sources of this package are contained in the Symplify monorepo. We welcome contributions for this package on symplify/symplify.