All PostgreSQL calls are now Connection/Resource object types and not resource All methods have parameter type set
27 lines
553 B
PHP
27 lines
553 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace PHPStan\ExtensionInstaller;
|
|
|
|
/**
|
|
* This is a stub class: it is in place only for scenarios where Composer
|
|
* is run with a `--no-scripts` flag, in which scenarios this stub class
|
|
* is not being replaced.
|
|
*
|
|
* If you are reading this docBlock inside your `vendor/` dir, then this means
|
|
* that phpstan/extension-installer didn't correctly install.
|
|
*
|
|
* @internal
|
|
*/
|
|
final class GeneratedConfig
|
|
{
|
|
|
|
public const EXTENSIONS = [];
|
|
|
|
public const NOT_INSTALLED = [];
|
|
|
|
private function __construct()
|
|
{
|
|
}
|
|
|
|
}
|