From a1a34c30b32ad6585364a59f7c639d3b7a02ff51 Mon Sep 17 00:00:00 2001 From: hide_d Date: Fri, 6 Apr 2018 18:15:41 +0900 Subject: [PATCH] =?UTF-8?q?phan=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .phan/config.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.phan/config.php b/.phan/config.php index f0a1b504..21a9b8de 100644 --- a/.phan/config.php +++ b/.phan/config.php @@ -45,13 +45,17 @@ return [ 'vendor/' ], + 'include_analysis_file_list' => [ + 'f_config/config.php', + 'hwe/lib.php' + ], + // A list of plugin files to execute. // See https://github.com/phan/phan/tree/master/.phan/plugins for even more. // (Pass these in as relative paths. // The 0.10.2 release will allow passing 'AlwaysReturnPlugin' if referring to a plugin that is bundled with Phan) 'plugins' => [ // checks if a function, closure or method unconditionally returns. - 'AlwaysReturnPlugin', // can also be written as 'vendor/phan/phan/.phan/plugins/AlwaysReturnPlugin.php' // Checks for syntactically unreachable statements in // the global scope or function bodies. 'UnreachableCodePlugin',