summaryrefslogtreecommitdiff
path: root/pear
diff options
context:
space:
mode:
authorStig Bakken <ssb@php.net>2002-10-22 23:08:09 +0000
committerStig Bakken <ssb@php.net>2002-10-22 23:08:09 +0000
commitb65e60b0936ea6420749d9fcd6efcf081570a117 (patch)
tree790847815d9b141ec6c7caf45b7ad932f50de66c /pear
parent59f499228f73323db7974fe2402907d8da5263ab (diff)
downloadphp-git-b65e60b0936ea6420749d9fcd6efcf081570a117.tar.gz
* add transactions member array (for queueing file transactions)
Diffstat (limited to 'pear')
-rw-r--r--pear/PEAR/Installer.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/pear/PEAR/Installer.php b/pear/PEAR/Installer.php
index 21c268d291..e97a9cabc5 100644
--- a/pear/PEAR/Installer.php
+++ b/pear/PEAR/Installer.php
@@ -86,6 +86,11 @@ class PEAR_Installer extends PEAR_Common
*/
var $registry;
+ /** List of file transactions queued for an install/upgrade/uninstall.
+ * @var array
+ */
+ var $transactions = array();
+
// }}}
// {{{ constructor