PhpStorm 2020.3 Help

Move Namespace Dialog

The dialog opens when you select a PHP namespace to be moved and choose Refactor | Move on the main menu or from the context menu of the selection.

PhpStorm supposes that the namespaces in your project are arranged in compliance with the PSR0 standard and enforces you to retain the folder structure and the namespace hierarchy in accordance with this standard when moving namespaces.

When you specify a namespace to move a namespace to, PhpStorm automatically updates the Target Destination Directory field, which shows the path to the folder that corresponds to the namespace in question.

ItemDescription
New Namespace NameWhen the dialog opens, the field shows the fully qualified name of the selected namespace. Specify the new namespace name. Use only backslashes \ as namespace separators.
Target Destination DirectoryWhen the dialog opens, the field shows the path to the folder corresponding to the current namespace.

The path is displayed in the following format:

...\<project root>\<current namespace folder relative to the project root>
The path is updated automatically as you specify the new namespace name. However, if you are going to move a namespace to another parent namespace, PhpStorm will not suggest the proper folder unless you appoint a root folder for your namespace structure by marking the relevant folder as Sources on the Directories page of the Settings/Preferences dialog Ctrl+Alt+S. See Directories for details.

Do one of the following:

  • Accept the preselected path displayed in the field.

  • Choose another path from the list. All of them are evaluated from the namespace root or from the current directory, so it is safe to choose any of them.

  • Click the Browse button and select a folder in the dialog that opens.

  • Press F2 and edit the preselected path. Keep in mind that this may cause problems with automatic loading in the future.

Refactor

Click this button to open the Move Files with Related Namespaces dialog and specify the classes and files to be moved to the new namespace and the new folder.

The upper pane of the dialog lists the destination namespaces and folders for classes and files related to the namespace. Each item in the list corresponds to a class/file. When you move the cursor to an item, the bottom pane shows the contents of the file related with it.

ps_move_namespace_refactoring_move_files_dialog.png

  • To have a class and the corresponding file moved to the destination namespace and the destination folder, select the checkbox next to the namespace/folder.

  • To add all the items to the list or remove all of them from the list, click Select All or Unselect All respectively.

Last modified: 08 March 2021