VSCode = Visual Studio Code 에서 사용할 수 있는 확장(Extension) 입니다.
PHP Class 파일에서 namespace 를 가져오고 확장해 줍니다. 또한 가져온 Class 를 정렬 할 수 있습니다.
링크 : https://marketplace.visualstudio.com/items?itemName=MehediDracula.php-namespace-resolver
단축키
[
{
"command": "namespaceResolver.import",
"key": "ctrl+alt+i",
"when": "editorTextFocus"
},
{
"command": "namespaceResolver.expand",
"key": "ctrl+alt+e",
"when": "editorTextFocus"
},
{
"command": "namespaceResolver.sort",
"key": "ctrl+alt+s",
"when": "editorTextFocus"
}
]'언어 > PHP' 카테고리의 다른 글
| Composer - PHP Composer (0) | 2018.11.19 |
|---|---|
| PHP DocBlocker - PHP DocBlocking 확장 (0) | 2018.09.23 |
| PHP Intelephense - 고성능, 풍부한 PHP IntelliSense (0) | 2018.09.22 |
| PHP IntelliSense - 고급 PHP IntelliSense (0) | 2018.09.22 |
| PHP Debug - XDebug 를 사용하여 PHP 디버깅 (1) | 2018.09.21 |