?
Current Path : /home1/savoy/public_html/savoyglobal.net/sec/application/swiftmailer/classes/Swift/Events/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/sec/application/swiftmailer/classes/Swift/Events/Event.php |
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * The minimum interface for an Event. * * @package Swift * @subpackage Events * @author Chris Corbyn */ interface Swift_Events_Event { /** * Get the source object of this event. * @return object */ public function getSource(); /** * Prevent this Event from bubbling any further up the stack. * @param boolean $cancel, optional */ public function cancelBubble($cancel = true); /** * Returns true if this Event will not bubble any further up the stack. * @return boolean */ public function bubbleCancelled(); }