Neo Anderson's Blog

Php-Storm-Tip-of-the-Day

字数统计: 78阅读时长: 1 min
2018/06/23
loading

phpstorm每日tip的中英互译:

英文中文符号(MAC版本)Code
The Inline Variable refactoring replaces redundant variable usage with its last assigned value. To invoke the refactoring, move the caret over the local variable to apply the refactoring to...and press ⌥⌘N(RefactorInline... )去除无效赋值变量⌥⌘Npublic fuction demo(){ $a = 'abc'; return $a;} => ...{return 'abc'}
CATALOG