Analysis failures
When analyzing large PHP project php hangs or end with a unsual return code
Php executable may have reached its maximum allocated memory. Increase the memory_limit value in your php.ini file. For example the file is located in /etc/php5/cli/php.ini on Ubuntu.
When analyzing large PHP project maven hangs with a Java heap space message
Increase the maximum heap memory allocated for maven by setting the environnement variable MAVEN_OPTS
When analyzing large PHP project phpdepend hangs with an error code 255 and message saying "Maximum function nesting level of ‘100′ reached"
Increase the maximum number of nested levels by editing your php.ini files and setting a value greater than 100 (which is default). You may also need to increase the maximum amount of memory that a script can consume.
