Open yamadashy opened 1 month ago
[!WARNING]
Rate limit exceeded
@yamadashy has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 19 minutes and 32 seconds before requesting another review.
⌛ How to resolve this issue?
After the wait time has elapsed, a review can be triggered using the `@coderabbitai review` command as a PR comment. Alternatively, push new commits to this PR. We recommend that you space out your commits to avoid hitting the rate limit.🚦 How do rate limits work?
CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our [FAQ](https://coderabbit.ai/docs/faq) for further information.📥 Commits
Files that changed from the base of the PR and between d29f83bbc4b681c0d0bdd60123ec8978e4f32f13 and f95a5b724815519793ccab56710c3ac2f3962778.
The changes involve updates to the composer.json
and phpstan.neon.dist
files for the yamadashy/phpstan-friendly-formatter
project. The composer.json
file updates the version constraint for the phpstan/phpstan
dependency to support version 2.0, removes the grifart/phpstan-oneline
dependency, and deletes the analyze-oneline
script. The phpstan.neon.dist
file removes an include statement related to the grifart/phpstan-oneline
package and increases the analysis level from 9 to 10, indicating a move towards stricter code quality checks.
File | Change Summary |
---|---|
composer.json | - Updated phpstan/phpstan dependency version from "^0.12 || ^1.0" to "^0.12 || ^1.0 || ^2.0" .- Removed grifart/phpstan-oneline from require-dev .- Removed analyze-oneline script from scripts . |
phpstan.neon.dist | - Removed include for vendor/grifart/phpstan-oneline/config.neon .- Updated level parameter from 9 to 10. |
sequenceDiagram
participant Developer
participant Composer
participant PHPStan
Developer->>Composer: Update dependencies
Composer->>PHPStan: Check compatibility with phpstan/phpstan
PHPStan-->>Composer: Compatibility OK
Composer-->>Developer: Dependencies updated
Developer->>PHPStan: Run analysis
PHPStan->>Developer: Analyze code at level 10
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
This PR updates our project to use PHPStan 2.0, which includes several improvements and changes to the static analysis tool.
Note: PHPStan 2.0 has not been officially released yet. This PR prepares our project for the upgrade, and we plan to merge and release it as soon as PHPStan 2.0 becomes available.
Summary by CodeRabbit