-
Notifications
You must be signed in to change notification settings - Fork 16
chore: deprecate unused SchemaBuilder methods #277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
WalkthroughThe Changes
Tip ⚡️ Faster reviews with caching
Enjoy the performance boost—your workflow just got faster. ✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (2)
src/Schema/Builder.php (2)
57-58
: Suggest adding runtime deprecation warning and version metadata
The@deprecated
docblock is a good first step, but developers may overlook it. Enhance clarity by specifying the version since deprecation (e.g.,since v9.0
) and emit a runtime notice viatrigger_error()
.@@ class Builder { - /** - * @deprecated Use Blueprint::dropIndex() instead. Will be removed in v10.0. + /** + * @deprecated since v9.0 Use Blueprint::dropIndex() instead. Will be removed in v10.0. @@ public function dropIndex($table, $name) + trigger_error( + __METHOD__ . ' is deprecated and will be removed in v10.0. Use Blueprint::dropIndex() instead.', + E_USER_DEPRECATED + ); $blueprint = $this->createBlueprint($table); $blueprint->dropIndex($name); $this->build($blueprint);
71-72
: Suggest adding runtime deprecation warning and version metadata
Apply the same enhancement todropIndexIfExist
: includesince
version in the docblock and trigger aE_USER_DEPRECATED
notice at the top of the method.@@ class Builder { - /** - * @deprecated Use Blueprint::dropIndex() instead. Will be removed in v10.0. + /** + * @deprecated since v9.0 Use Blueprint::dropIndex() instead. Will be removed in v10.0. @@ public function dropIndexIfExist($table, $name) + trigger_error( + __METHOD__ . ' is deprecated and will be removed in v10.0. Use Blueprint::dropIndex() instead.', + E_USER_DEPRECATED + ); if (in_array($name, $this->getIndexes($table), true)) { $blueprint = $this->createBlueprint($table); $blueprint->dropIndex($name);
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
src/Schema/Builder.php
(2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: Run-PHPUnit
Summary by CodeRabbit