From 38f7bf86c6c915c818981024dc7de5c6b5cf60e0 Mon Sep 17 00:00:00 2001 From: Nikolay Bachiyski Date: Sat, 26 Oct 2013 00:41:34 +0000 Subject: [PATCH] Extract: add a phpdoc to clarify the class responsibility First step towards making it do only one thing and cleaning it up git-svn-id: https://develop.svn.wordpress.org/trunk@25917 602fd350-edb4-49c9-b593-d223f7449a82 --- tools/i18n/extract.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/i18n/extract.php b/tools/i18n/extract.php index 883e14ccb4..bd40f9d056 100644 --- a/tools/i18n/extract.php +++ b/tools/i18n/extract.php @@ -3,6 +3,10 @@ $pomo = dirname( dirname( dirname( __FILE__ ) ) ) . '/src/wp-includes/pomo'; require_once "$pomo/entry.php"; require_once "$pomo/translations.php"; +/** + * Responsible for extracting translatable strings from PHP source files + * in the form of Translations instances + */ class StringExtractor { var $rules = array();