true, // Allow null to be cast as any type and for any // type to be cast to null. "null_casts_as_any_type" => true, // Backwards Compatibility Checking 'backward_compatibility_checks' => false, // Run a quick version of checks that takes less // time "quick_mode" => false, // Only emit critical issues to start with // (0 is low severity, 5 is normal severity, 10 is critical) "minimum_severity" => 10, // A list of directories that should be parsed for class and // method information. After excluding the directories // defined in exclude_analysis_directory_list, the remaining // files will be statically analyzed for errors. // // Thus, both first-party and third-party code being used by // your application should be included in this list. 'directory_list' => [ // Change this to include the folders you wish to analyze // (and the folders of their dependencies) 'www', // To speed up analysis, we recommend going back later and // limiting this to only the vendor/ subdirectories your // project depends on. // `phan --init` will generate a list of folders for you //'www/vendor', ], // A list of directories holding code that we want // to parse, but not analyze "exclude_analysis_directory_list" => [ 'www/vendor', 'www/lib/FileUpload', 'www/lib/pChart', 'www/lib/pChart2.1.4', 'www/lib/Smarty', 'www/lib/smarty-3.1.30', 'www/templates_c', 'www/log', 'www/tmp', 'www/cache', 'www/media', ], ];