Moved minimum php version to 8.1

All PostgreSQL calls are now Connection/Resource object types and not
resource
All methods have parameter type set
This commit is contained in:
Clemens Schwaighofer
2023-02-28 17:36:19 +09:00
parent 44f37b7f74
commit 1596654149
54 changed files with 1376 additions and 533 deletions

View File

@@ -0,0 +1,26 @@
<?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()
{
}
}