We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Should cover
E.g Symfony 3.0
class CustomTranslator extends Translator { public function fooMethod() { // get locale $locale = $this->locale; // update locale $this->locale = $locale; } }
class CustomTranslator extends Translator { public function fooMethod() { // get locale $locale = $this->getLocale(); // update locale $this->setLocale($locale); } }
The text was updated successfully, but these errors were encountered:
Updated Rector to commit 0864547
d6ce660
rectorphp/rector-src@0864547 [automated] Re-Generate Nodes/Rectors Documentation (#125)
[automated] Re-Generate Nodes/Rectors Documentation (rectorphp#125)
0864547
Co-authored-by: TomasVotruba <[email protected]>
No branches or pull requests
Should cover
E.g Symfony 3.0
Before
After
The text was updated successfully, but these errors were encountered: