nette / php-generator

🐘 Generates neat PHP code for you. Supports new PHP 8.3 features.
https://doc.nette.org/php-generator
Other
2.11k stars 138 forks source link

How to remove a used namespace? #102

Closed ruudk closed 2 years ago

ruudk commented 2 years ago

First of all, thanks for this amazing project.

It's very easy to add uses using $namespace->addUse but it appears to be impossible to remove an imported namespace.

It would be great if it was possible to call $namespace->removeUse('Fully\Qualified');.

Currently I solve the useless imports by running it through PHP CS Fixer, that works. But feels a bit of a work around.