diff options
author | Stig Bakken <ssb@php.net> | 2002-10-22 23:08:09 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2002-10-22 23:08:09 +0000 |
commit | b65e60b0936ea6420749d9fcd6efcf081570a117 (patch) | |
tree | 790847815d9b141ec6c7caf45b7ad932f50de66c /pear | |
parent | 59f499228f73323db7974fe2402907d8da5263ab (diff) | |
download | php-git-b65e60b0936ea6420749d9fcd6efcf081570a117.tar.gz |
* add transactions member array (for queueing file transactions)
Diffstat (limited to 'pear')
-rw-r--r-- | pear/PEAR/Installer.php | 5 |
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 |