From f6a7ed0407c3411090a697ba0831bb0d6f4bb616 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 26 Oct 2020 05:45:38 +0100 Subject: [PATCH] Contrib: - added missing-methods.sh which requires a debug.log file which you can generate this way: MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit $ php index.php app=foo > debug.log 2>&1 Signed-off-by: Roland Häder --- contrib/missing-methods.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 contrib/missing-methods.sh diff --git a/contrib/missing-methods.sh b/contrib/missing-methods.sh new file mode 100755 index 00000000..a4105c7a --- /dev/null +++ b/contrib/missing-methods.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +DEBUG_FILE="./debug.log" + +if [ ! -f "${DEBUG_FILE}" ] +then + echo "$0: DEBUG_FILE='${DEBUG_FILE}' does not exist." + exit 255 +fi + +grep __call "${DEBUG_FILE}" |cut -d ":" -f 5-7|cut -d "[" -f 2|cut -d "]" -f 1 -- 2.39.2