From 3069eaf35e833ffe4a1c1c7829dd7e168ae27420 Mon Sep 17 00:00:00 2001 From: Ciro Mattia Gonano Date: Wed, 11 Sep 2013 15:56:48 +0200 Subject: Merge up to r3319 --- .../PhpDocumentor/phpDocumentor/EventStack.inc | 98 ---------------------- 1 file changed, 98 deletions(-) delete mode 100755 buildscripts/PhpDocumentor/phpDocumentor/EventStack.inc (limited to 'buildscripts/PhpDocumentor/phpDocumentor/EventStack.inc') diff --git a/buildscripts/PhpDocumentor/phpDocumentor/EventStack.inc b/buildscripts/PhpDocumentor/phpDocumentor/EventStack.inc deleted file mode 100755 index 4a75bba3..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/EventStack.inc +++ /dev/null @@ -1,98 +0,0 @@ - - * @copyright 2000-2007 Joshua Eichorn - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL - * @version CVS: $Id: EventStack.inc 243937 2007-10-10 02:27:42Z ashnazg $ - * @filesource - * @link http://www.phpdoc.org - * @link http://pear.php.net/PhpDocumentor - * @since 0.1 - * @todo CS cleanup - change package to PhpDocumentor - */ -/** - * An event Stack - * - * @category ToolsAndUtilities - * @package phpDocumentor - * @author Joshua Eichorn - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL - * @version Release: 1.4.3 - * @link http://www.phpdoc.org - * @link http://pear.php.net/PhpDocumentor - * @todo CS cleanup - change package to PhpDocumentor - */ -class EventStack -{ - /** - * The stack - * @var array - */ - var $stack = array(PARSER_EVENT_NOEVENTS); - - /** - * The number of events in the stack - * @var integer - */ - var $num = 0; - - /** - * Push an event onto the stack - * - * @param int $event All events must be constants - * - * @return void - */ - function pushEvent($event) - { - $this->num = array_push($this->stack, $event) - 1; - } - - /** - * Pop an event from the stack - * - * @return int An event - */ - function popEvent() - { - $this->num--; - return array_pop($this->stack); - } - - /** - * Get the current event - * - * @return int An event - */ - function getEvent() - { - return $this->stack[$this->num]; - } -} -- cgit v1.2.3