PHP-Namespace-Resolver icon indicating copy to clipboard operation
PHP-Namespace-Resolver copied to clipboard

PHP Namespace Resolver - VSCode Extension

Results 50 PHP-Namespace-Resolver issues
Sort by recently updated
recently updated
newest added

Hello! I try according to: ``` Search these commands by the title on command palette. [ { "title": "Import Class", "command": "namespaceResolver.import" }, ``` ![image](https://user-images.githubusercontent.com/24850253/192957086-16041b4c-26c7-416a-b336-396263c6999f.png) PHP Namespace Resolver v1.1.9 VSCODE...

Is this project abandoned? The only activity in over a year seem to be new issues, but they seem to go unheard. The last commit was over a year ago...

### Summary Inserts a newline before generated namespace for cleaner code style. **Before:** ![before](https://im3.ezgif.com/tmp/ezgif-3-c4615328e0.gif) **After:** ![after](https://im3.ezgif.com/tmp/ezgif-3-29b6344e45.gif)

Hi Mehedi, thanks for the excellent extension! This is a proposal for a minor feature that sorts imports inside, considering individual blocks of imports separated by blank lines. The use...

Type: Bug I dont know why. The support team at github asked me to install an extension to check which one is messed up. and this came. Extension version: 1.1.9...

**Composers autoload** ```json "autoload": { "psr-4": { "Foo\\": "src/" } }, ``` **File:** `src/Test.php` **Generate namespace:** `Ctrl` + `Alt` + `G` **Result:** ```php namespace Foo\me\\www\site\src; ``` **Expected:** ```php namespace Foo;...

When I tried to import a class, there was a toast message saying : "Cannot read properties of null (reading 'pop')". ``` get(); $conditions = Condition::getData(); $prompts = Prompt::getData(); ```...

Hi, can you add 1 option for sorting namespaces like eclipse php, for example: use Da\QrCode\QrCode; use Mpdf\Mpdf; use app\models\Customer; use app\models\Product; use app\models\enum\TypeIds; use app\models\views\CustomerForm; use app\models\views\ProductForm; use DateTime;...

Type: Bug If I accidentally hit Cmd+S to save (habbit) then it will highlight several tokens on the screen & will not go away. I think that there are other...

PSR12 mandates that different types of use statements (classes, functions, constants) are separated by one line and not contain an empty line (see https://www.php-fig.org/psr/psr-12/#3-declare-statements-namespace-and-import-statements). Enabling sorting of headers breaks this....