Forrest logo
back to context overview

phan

List of commands for phan:

  • phan:tldr:07cdf phan: Generate a `.phan/config.php` in the current directory.
    $ phan --init
    try on your machine
    explain this command
  • phan:tldr:2f32c phan: Specify the output mode.
    $ phan --output-mode ${select}
    try on your machine
    explain this command
  • phan:tldr:52f66 phan: Specify the number of parallel processes.
    $ phan --processes ${number_of_processes}
    try on your machine
    explain this command
  • phan:tldr:5f6c3 phan: Generate a Phan configuration file using a specific level (1 being strictest to 5 being the least strict).
    $ phan --init --init-level ${level}
    try on your machine
    explain this command
  • phan:tldr:abba8 phan: Analyze the current directory.
    $ phan
    try on your machine
    explain this command
  • phan:tldr:bfb30 phan: Specify a config file (defaults to `.phan/config.php`).
    $ phan --config-file ${path-to-config-php}
    try on your machine
    explain this command
  • phan:tldr:dfa63 phan: Analyze one or more directories.
    $ phan --directory ${path-to-directory} --directory ${path-to-another_directory}
    try on your machine
    explain this command
back to context overview