struggle-for-php / sfp-psalm-dont-operation-inside-constructor-plugin
Dont' operation inside constructor
Installs: 77
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 2
Type:psalm-plugin
Requires
- php: ~8.1.0 || ~8.2.0
- ext-simplexml: *
- nikic/php-parser: ^4.10
- struggle-for-php/resource-operations: ^4.0.1
- vimeo/psalm: ^5
Requires (Dev)
- doctrine/coding-standard: ^10
- infection/infection: ^0.26.19
- phpunit/phpunit: ^10
- slevomat/coding-standard: ^8
- squizlabs/php_codesniffer: ^3.7
This package is auto-updated.
Last update: 2024-10-22 09:20:32 UTC
README
$ ./vendor/bin/psalm
Scanning files...
Analyzing files...
░░░░░░░░░░░░░
ERROR: MethodOperationInsideConstructorIssue - src/app/Controllers/BlogController.php:15:9 - 'SplFileInfo::openfile' not allowed inside __construct()
$log->openFile('w+');
ERROR: MethodOperationInsideConstructorIssue - src/app/models/Model.php:26:13 - 'PDO::query' not allowed inside __construct()
$this->pdo->query($query);
------------------------------
2 errors found
------------------------------
Features
- check operation resources
- resource operation function list is provided by struggle-for-php/resource-operations
- fork of sebastianbergmann/resource-operations
Todo
- support flexible setting xml to mark vendor libraries
Disclaimer
this plugin is very experimental status.
Installation
$ composer require --dev struggle-for-php/sfp-psalm-dont-operation-inside-constructor-plugin:dev-master
$ vendor/bin/psalm-plugin enable struggle-for-php/sfp-psalm-dont-operation-inside-constructor-plugin