phpstan-todo-by
phpstan-todo-by copied to clipboard
Todo comments with expiration
I think we should support comments with a full github url: ``` // TODO: https://github.com/staabm/phpstan-todo-by/issues/91 we need todo something when this issue is resolved ``` I think these are helpful,...
Hello, great package! I may have not searched correctly, but is there a way to get PhpStan fail with an error if a TODO exists without an expiration constraint? For...
Atm most config settings are at the top level of `parameters.todo_by`. Since we got more and more rules, we should restructure that a bit.
In some cases, the same expired comment is reported twice. ## Version phpstan: 1.11.5 phpstan-todo-by: 0.1.27 ## Code ```php /** * TODO: APP-1234 */ #[FirstAttribute] #[SecondAttribute] private string $foo; ```...
Hi, first up: really great library! Thanks for all your hard work, much appreciated. So I have this code in my library: ```php if (!$this->strictIds) { trigger_deprecation("...", "3.2.2", "Not setting...
requires https://github.com/phpstan/phpstan-src/pull/3527
Hi there, we are using your package to identify TODOs with expired dates. First of all, great package and thanks for making it! Recently we added a `//todo 2024-09-10` inside...
You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting...
Updates the requirements on [redaxo/php-cs-fixer-config](https://github.com/redaxo/php-cs-fixer-config) to permit the latest version. Release notes Sourced from redaxo/php-cs-fixer-config's releases. 2.12.0 What's Changed Disable single_line_throw rule by @gharlan in redaxo/php-cs-fixer-config#36 Full Changelog: https://github.com/redaxo/php-cs-fixer-config/compare/2.11.0...2.12.0 Commits...
I was wondering if it would be possible to support defining TODO rules directly in the phpstan.neon configuration file, rather than only through code comments? In some scenarios, it would...