From 7ddaefba349e32c6a2b2f85c012e3933997e5d99 Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Tue, 2 Apr 2002 09:15:51 +0000 Subject: [PATCH] * add type property telling what type of frontend this class implements --- pear/PEAR/Frontend/CLI.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pear/PEAR/Frontend/CLI.php b/pear/PEAR/Frontend/CLI.php index ae6d9c0436..3a47a619ac 100644 --- a/pear/PEAR/Frontend/CLI.php +++ b/pear/PEAR/Frontend/CLI.php @@ -25,6 +25,13 @@ class PEAR_Frontend_CLI extends PEAR { // {{{ properties + /** + * What type of user interface this frontend is for. + * @var string + * @access public + */ + var $type = 'CLI'; + var $omode = 'plain'; var $params = array(); var $term = array( -- 2.50.1