Config:
services:
Rector\Rector\Psr4\MultipleClassFileToPsr4ClassesRector: ~
File A.php:
class B { }
Class C { }
command:
vendor/bin/rector process A.php
Result is that A.php stays with both classes and B.php and C.php are created.
I would expect either that A.php will be deleted or at least it will be edited, because this creates problem with duplicate classes.
Goodie! Thank you, will try it out
Confirming it works as expected now 馃憤
Thank you!