HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

phan — A static analysis tool for PHP. More information: <https://github.com/phan/phan>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandstaticanalysiscliphpphantoolfor

Problem

How to use the phan command: A static analysis tool for PHP. More information: <https://github.com/phan/phan>.

Solution

phan — A static analysis tool for PHP. More information: <https://github.com/phan/phan>.

Generate a .phan/config.php in the current directory:
phan --init


Generate a Phan configuration file using a specific level (1 being strictest to 5 being the least strict):
phan --init --init-level {{level}}


Analyze the current directory:
phan


Analyze one or more directories:
phan {{--directory path/to/directory1 --directory path/to/directory2 ...}}


Specify a configuration file (defaults to .phan/config.php):
phan --config-file {{path/to/config.php}}


Specify the output mode:
phan --output-mode {{text|verbose|json|csv|codeclimate|checkstyle|pylint|html}}


Specify the number of parallel processes:
phan --processes {{number_of_processes}}

Code Snippets

Generate a `.phan/config.php` in the current directory

phan --init

Generate a Phan configuration file using a specific level (1 being strictest to 5 being the least strict)

phan --init --init-level {{level}}

Analyze the current directory

phan

Analyze one or more directories

phan {{--directory path/to/directory1 --directory path/to/directory2 ...}}

Specify a configuration file (defaults to `.phan/config.php`)

phan --config-file {{path/to/config.php}}

Context

tldr-pages: common/phan

Revisions (0)

No revisions yet.