forrest79 / phpgsql-phpstan
PhPgSql class reflection extension and settings for PHPStan.
Installs: 3 562
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Type:phpstan-extension
Requires
- php: ^8.0
- phpstan/phpstan: ^2.0
Requires (Dev)
- dg/bypass-finals: ^1.5
- forrest79/phpcs: ^1.7
- forrest79/phpcs-ignores: ^0.5
- forrest79/phpgsql: ^1.4
- phpstan/phpstan-strict-rules: ^2.0
README
Introduction
This extension defines dynamic methods and other PHPStan setting for Forrest79\PhPgSql
.
Installation
To use this extension, require it in Composer:
composer require --dev forrest79/phpgsql-phpstan
Using
Include extension.neon
in your project's PHPStan config:
includes: - vendor/forrest79/phpgsql-phpstan/extension.neon
If you're using your own Forrest79\PhPgSql\Db\Row
or Forrest79\PhPgSql\Fluen\Query
, you can set it likes this:
parameters: forrest79: phpgsql: dbRowClass: MyOwn\PhPgSql\Db\RowXyz fluentQueryClass: MyOwn\PhPgSql\Fluent\QueryXyz
Or you can set just one extension:
- for
PhPgSql\Db\Result
(for fetching the correctRow
object from fetch methods - unfortunatelyRow
iteration must be typed right in your code for now):
services: Forrest79PhPgSqlPHPStanReflectionDbResultDynamicMethodReturnTypeExtension: arguments: dbRowClass: MyOwn\PhPgSql\Db\RowXyz
- for
PhPgSql\Fluent\QueryExecute
(for fetching the correctRow
object from fetch methods - unfortunatelyRow
iteration must be typed right in your code for now):
services: Forrest79PhPgSqlPHPStanReflectionFluentQueryExecuteDynamicMethodReturnTypeExtension: arguments: dbRowClass: MyOwn\PhPgSql\Db\RowXyz
- for
PhPgSql\Fluent\Complex
(to return rightQuery
inquery()
method):
services: Forrest79PhPgSqlPHPStanReflectionFluentComplexDynamicMethodReturnTypeExtension: arguments: fluentQueryClass: MyOwn\PhPgSql\Fluent\QueryXyz
You can use simple DbRow
annotation to narrow the Row
object.
foreach ($someQuery as $row) { // here is $row as Forrest79\PhPgSql\Db\Row for PHPStan /** @var DbRow $row */ // here is as your custom row object }
Use DbRow
pseudo-type whenever you want, params, returns, vars...
To set only this extension use:
services: Forrest79PhPgSqlPHPStanPhpDocDbRowTypeNodeResolverExtension: arguments: dbRowClass: MyOwn\PhPgSql\Db\RowXyz