PHP refactoring tool

Is there any PHP refactoring tool that would turn huge noodle code into the right function based on?

+2
source share
3 answers

No, you cannot automate this. Static analysis can reformat your code, eliminate bad practices, or report security vulnerabilities, but it cannot turn your code into good and clean OOP.

+6
source

Zend Studio (for Eclipse) supports code refactoring - it allows you to select a piece of code and extract functions / methods. For instance:

alt text

It also allows you to rename variables to further clear your code. Although this is not a fully automated solution, . , .

+1

2019+

( ).

nikic/php-parser, , . , , , strlen Nette\Utils\Strings::length().

, . (. Rector Github), , PHP 5.2 7.4.

, . , , , , . , PHP-, .

+1

Source: https://habr.com/ru/post/1772237/


All Articles