@@ -15,128 +15,128 @@ |
||
15 | 15 | */ |
16 | 16 | class Swift_Events_SimpleEventDispatcher implements Swift_Events_EventDispatcher |
17 | 17 | { |
18 | - /** A map of event types to their associated listener types */ |
|
19 | - private $eventMap = []; |
|
18 | + /** A map of event types to their associated listener types */ |
|
19 | + private $eventMap = []; |
|
20 | 20 | |
21 | - /** Event listeners bound to this dispatcher */ |
|
22 | - private $listeners = []; |
|
21 | + /** Event listeners bound to this dispatcher */ |
|
22 | + private $listeners = []; |
|
23 | 23 | |
24 | - /** |
|
25 | - * Create a new EventDispatcher. |
|
26 | - */ |
|
27 | - public function __construct() |
|
28 | - { |
|
29 | - $this->eventMap = [ |
|
30 | - 'Swift_Events_CommandEvent' => 'Swift_Events_CommandListener', |
|
31 | - 'Swift_Events_ResponseEvent' => 'Swift_Events_ResponseListener', |
|
32 | - 'Swift_Events_SendEvent' => 'Swift_Events_SendListener', |
|
33 | - 'Swift_Events_TransportChangeEvent' => 'Swift_Events_TransportChangeListener', |
|
34 | - 'Swift_Events_TransportExceptionEvent' => 'Swift_Events_TransportExceptionListener', |
|
35 | - ]; |
|
36 | - } |
|
24 | + /** |
|
25 | + * Create a new EventDispatcher. |
|
26 | + */ |
|
27 | + public function __construct() |
|
28 | + { |
|
29 | + $this->eventMap = [ |
|
30 | + 'Swift_Events_CommandEvent' => 'Swift_Events_CommandListener', |
|
31 | + 'Swift_Events_ResponseEvent' => 'Swift_Events_ResponseListener', |
|
32 | + 'Swift_Events_SendEvent' => 'Swift_Events_SendListener', |
|
33 | + 'Swift_Events_TransportChangeEvent' => 'Swift_Events_TransportChangeListener', |
|
34 | + 'Swift_Events_TransportExceptionEvent' => 'Swift_Events_TransportExceptionListener', |
|
35 | + ]; |
|
36 | + } |
|
37 | 37 | |
38 | - /** |
|
39 | - * Create a new SendEvent for $source and $message. |
|
40 | - * |
|
41 | - * @return Swift_Events_SendEvent |
|
42 | - */ |
|
43 | - public function createSendEvent(Swift_Transport $source, Swift_Mime_SimpleMessage $message) |
|
44 | - { |
|
45 | - return new Swift_Events_SendEvent($source, $message); |
|
46 | - } |
|
38 | + /** |
|
39 | + * Create a new SendEvent for $source and $message. |
|
40 | + * |
|
41 | + * @return Swift_Events_SendEvent |
|
42 | + */ |
|
43 | + public function createSendEvent(Swift_Transport $source, Swift_Mime_SimpleMessage $message) |
|
44 | + { |
|
45 | + return new Swift_Events_SendEvent($source, $message); |
|
46 | + } |
|
47 | 47 | |
48 | - /** |
|
49 | - * Create a new CommandEvent for $source and $command. |
|
50 | - * |
|
51 | - * @param string $command That will be executed |
|
52 | - * @param array $successCodes That are needed |
|
53 | - * |
|
54 | - * @return Swift_Events_CommandEvent |
|
55 | - */ |
|
56 | - public function createCommandEvent(Swift_Transport $source, $command, $successCodes = []) |
|
57 | - { |
|
58 | - return new Swift_Events_CommandEvent($source, $command, $successCodes); |
|
59 | - } |
|
48 | + /** |
|
49 | + * Create a new CommandEvent for $source and $command. |
|
50 | + * |
|
51 | + * @param string $command That will be executed |
|
52 | + * @param array $successCodes That are needed |
|
53 | + * |
|
54 | + * @return Swift_Events_CommandEvent |
|
55 | + */ |
|
56 | + public function createCommandEvent(Swift_Transport $source, $command, $successCodes = []) |
|
57 | + { |
|
58 | + return new Swift_Events_CommandEvent($source, $command, $successCodes); |
|
59 | + } |
|
60 | 60 | |
61 | - /** |
|
62 | - * Create a new ResponseEvent for $source and $response. |
|
63 | - * |
|
64 | - * @param string $response |
|
65 | - * @param bool $valid If the response is valid |
|
66 | - * |
|
67 | - * @return Swift_Events_ResponseEvent |
|
68 | - */ |
|
69 | - public function createResponseEvent(Swift_Transport $source, $response, $valid) |
|
70 | - { |
|
71 | - return new Swift_Events_ResponseEvent($source, $response, $valid); |
|
72 | - } |
|
61 | + /** |
|
62 | + * Create a new ResponseEvent for $source and $response. |
|
63 | + * |
|
64 | + * @param string $response |
|
65 | + * @param bool $valid If the response is valid |
|
66 | + * |
|
67 | + * @return Swift_Events_ResponseEvent |
|
68 | + */ |
|
69 | + public function createResponseEvent(Swift_Transport $source, $response, $valid) |
|
70 | + { |
|
71 | + return new Swift_Events_ResponseEvent($source, $response, $valid); |
|
72 | + } |
|
73 | 73 | |
74 | - /** |
|
75 | - * Create a new TransportChangeEvent for $source. |
|
76 | - * |
|
77 | - * @return Swift_Events_TransportChangeEvent |
|
78 | - */ |
|
79 | - public function createTransportChangeEvent(Swift_Transport $source) |
|
80 | - { |
|
81 | - return new Swift_Events_TransportChangeEvent($source); |
|
82 | - } |
|
74 | + /** |
|
75 | + * Create a new TransportChangeEvent for $source. |
|
76 | + * |
|
77 | + * @return Swift_Events_TransportChangeEvent |
|
78 | + */ |
|
79 | + public function createTransportChangeEvent(Swift_Transport $source) |
|
80 | + { |
|
81 | + return new Swift_Events_TransportChangeEvent($source); |
|
82 | + } |
|
83 | 83 | |
84 | - /** |
|
85 | - * Create a new TransportExceptionEvent for $source. |
|
86 | - * |
|
87 | - * @return Swift_Events_TransportExceptionEvent |
|
88 | - */ |
|
89 | - public function createTransportExceptionEvent(Swift_Transport $source, Swift_TransportException $ex) |
|
90 | - { |
|
91 | - return new Swift_Events_TransportExceptionEvent($source, $ex); |
|
92 | - } |
|
84 | + /** |
|
85 | + * Create a new TransportExceptionEvent for $source. |
|
86 | + * |
|
87 | + * @return Swift_Events_TransportExceptionEvent |
|
88 | + */ |
|
89 | + public function createTransportExceptionEvent(Swift_Transport $source, Swift_TransportException $ex) |
|
90 | + { |
|
91 | + return new Swift_Events_TransportExceptionEvent($source, $ex); |
|
92 | + } |
|
93 | 93 | |
94 | - /** |
|
95 | - * Bind an event listener to this dispatcher. |
|
96 | - */ |
|
97 | - public function bindEventListener(Swift_Events_EventListener $listener) |
|
98 | - { |
|
99 | - foreach ($this->listeners as $l) { |
|
100 | - // Already loaded |
|
101 | - if ($l === $listener) { |
|
102 | - return; |
|
103 | - } |
|
104 | - } |
|
105 | - $this->listeners[] = $listener; |
|
106 | - } |
|
94 | + /** |
|
95 | + * Bind an event listener to this dispatcher. |
|
96 | + */ |
|
97 | + public function bindEventListener(Swift_Events_EventListener $listener) |
|
98 | + { |
|
99 | + foreach ($this->listeners as $l) { |
|
100 | + // Already loaded |
|
101 | + if ($l === $listener) { |
|
102 | + return; |
|
103 | + } |
|
104 | + } |
|
105 | + $this->listeners[] = $listener; |
|
106 | + } |
|
107 | 107 | |
108 | - /** |
|
109 | - * Dispatch the given Event to all suitable listeners. |
|
110 | - * |
|
111 | - * @param string $target method |
|
112 | - */ |
|
113 | - public function dispatchEvent(Swift_Events_EventObject $evt, $target) |
|
114 | - { |
|
115 | - $bubbleQueue = $this->prepareBubbleQueue($evt); |
|
116 | - $this->bubble($bubbleQueue, $evt, $target); |
|
117 | - } |
|
108 | + /** |
|
109 | + * Dispatch the given Event to all suitable listeners. |
|
110 | + * |
|
111 | + * @param string $target method |
|
112 | + */ |
|
113 | + public function dispatchEvent(Swift_Events_EventObject $evt, $target) |
|
114 | + { |
|
115 | + $bubbleQueue = $this->prepareBubbleQueue($evt); |
|
116 | + $this->bubble($bubbleQueue, $evt, $target); |
|
117 | + } |
|
118 | 118 | |
119 | - /** Queue listeners on a stack ready for $evt to be bubbled up it */ |
|
120 | - private function prepareBubbleQueue(Swift_Events_EventObject $evt) |
|
121 | - { |
|
122 | - $bubbleQueue = []; |
|
123 | - $evtClass = \get_class($evt); |
|
124 | - foreach ($this->listeners as $listener) { |
|
125 | - if (\array_key_exists($evtClass, $this->eventMap) |
|
126 | - && ($listener instanceof $this->eventMap[$evtClass])) { |
|
127 | - $bubbleQueue[] = $listener; |
|
128 | - } |
|
129 | - } |
|
119 | + /** Queue listeners on a stack ready for $evt to be bubbled up it */ |
|
120 | + private function prepareBubbleQueue(Swift_Events_EventObject $evt) |
|
121 | + { |
|
122 | + $bubbleQueue = []; |
|
123 | + $evtClass = \get_class($evt); |
|
124 | + foreach ($this->listeners as $listener) { |
|
125 | + if (\array_key_exists($evtClass, $this->eventMap) |
|
126 | + && ($listener instanceof $this->eventMap[$evtClass])) { |
|
127 | + $bubbleQueue[] = $listener; |
|
128 | + } |
|
129 | + } |
|
130 | 130 | |
131 | - return $bubbleQueue; |
|
132 | - } |
|
131 | + return $bubbleQueue; |
|
132 | + } |
|
133 | 133 | |
134 | - /** Bubble $evt up the stack calling $target() on each listener */ |
|
135 | - private function bubble(array &$bubbleQueue, Swift_Events_EventObject $evt, $target) |
|
136 | - { |
|
137 | - if (!$evt->bubbleCancelled() && $listener = array_shift($bubbleQueue)) { |
|
138 | - $listener->$target($evt); |
|
139 | - $this->bubble($bubbleQueue, $evt, $target); |
|
140 | - } |
|
141 | - } |
|
134 | + /** Bubble $evt up the stack calling $target() on each listener */ |
|
135 | + private function bubble(array &$bubbleQueue, Swift_Events_EventObject $evt, $target) |
|
136 | + { |
|
137 | + if (!$evt->bubbleCancelled() && $listener = array_shift($bubbleQueue)) { |
|
138 | + $listener->$target($evt); |
|
139 | + $this->bubble($bubbleQueue, $evt, $target); |
|
140 | + } |
|
141 | + } |
|
142 | 142 | } |
@@ -15,8 +15,8 @@ |
||
15 | 15 | */ |
16 | 16 | interface Swift_Events_TransportExceptionListener extends Swift_Events_EventListener |
17 | 17 | { |
18 | - /** |
|
19 | - * Invoked as a TransportException is thrown in the Transport system. |
|
20 | - */ |
|
21 | - public function exceptionThrown(Swift_Events_TransportExceptionEvent $evt); |
|
18 | + /** |
|
19 | + * Invoked as a TransportException is thrown in the Transport system. |
|
20 | + */ |
|
21 | + public function exceptionThrown(Swift_Events_TransportExceptionEvent $evt); |
|
22 | 22 | } |
@@ -15,24 +15,24 @@ |
||
15 | 15 | */ |
16 | 16 | interface Swift_Events_Event |
17 | 17 | { |
18 | - /** |
|
19 | - * Get the source object of this event. |
|
20 | - * |
|
21 | - * @return object |
|
22 | - */ |
|
23 | - public function getSource(); |
|
18 | + /** |
|
19 | + * Get the source object of this event. |
|
20 | + * |
|
21 | + * @return object |
|
22 | + */ |
|
23 | + public function getSource(); |
|
24 | 24 | |
25 | - /** |
|
26 | - * Prevent this Event from bubbling any further up the stack. |
|
27 | - * |
|
28 | - * @param bool $cancel, optional |
|
29 | - */ |
|
30 | - public function cancelBubble($cancel = true); |
|
25 | + /** |
|
26 | + * Prevent this Event from bubbling any further up the stack. |
|
27 | + * |
|
28 | + * @param bool $cancel, optional |
|
29 | + */ |
|
30 | + public function cancelBubble($cancel = true); |
|
31 | 31 | |
32 | - /** |
|
33 | - * Returns true if this Event will not bubble any further up the stack. |
|
34 | - * |
|
35 | - * @return bool |
|
36 | - */ |
|
37 | - public function bubbleCancelled(); |
|
32 | + /** |
|
33 | + * Returns true if this Event will not bubble any further up the stack. |
|
34 | + * |
|
35 | + * @return bool |
|
36 | + */ |
|
37 | + public function bubbleCancelled(); |
|
38 | 38 | } |
@@ -15,13 +15,13 @@ |
||
15 | 15 | */ |
16 | 16 | interface Swift_Events_SendListener extends Swift_Events_EventListener |
17 | 17 | { |
18 | - /** |
|
19 | - * Invoked immediately before the Message is sent. |
|
20 | - */ |
|
21 | - public function beforeSendPerformed(Swift_Events_SendEvent $evt); |
|
18 | + /** |
|
19 | + * Invoked immediately before the Message is sent. |
|
20 | + */ |
|
21 | + public function beforeSendPerformed(Swift_Events_SendEvent $evt); |
|
22 | 22 | |
23 | - /** |
|
24 | - * Invoked immediately after the Message is sent. |
|
25 | - */ |
|
26 | - public function sendPerformed(Swift_Events_SendEvent $evt); |
|
23 | + /** |
|
24 | + * Invoked immediately after the Message is sent. |
|
25 | + */ |
|
26 | + public function sendPerformed(Swift_Events_SendEvent $evt); |
|
27 | 27 | } |
@@ -15,8 +15,8 @@ |
||
15 | 15 | */ |
16 | 16 | interface Swift_Events_ResponseListener extends Swift_Events_EventListener |
17 | 17 | { |
18 | - /** |
|
19 | - * Invoked immediately following a response coming back. |
|
20 | - */ |
|
21 | - public function responseReceived(Swift_Events_ResponseEvent $evt); |
|
18 | + /** |
|
19 | + * Invoked immediately following a response coming back. |
|
20 | + */ |
|
21 | + public function responseReceived(Swift_Events_ResponseEvent $evt); |
|
22 | 22 | } |
@@ -15,8 +15,8 @@ |
||
15 | 15 | */ |
16 | 16 | interface Swift_Events_CommandListener extends Swift_Events_EventListener |
17 | 17 | { |
18 | - /** |
|
19 | - * Invoked immediately following a command being sent. |
|
20 | - */ |
|
21 | - public function commandSent(Swift_Events_CommandEvent $evt); |
|
18 | + /** |
|
19 | + * Invoked immediately following a command being sent. |
|
20 | + */ |
|
21 | + public function commandSent(Swift_Events_CommandEvent $evt); |
|
22 | 22 | } |
@@ -15,50 +15,50 @@ |
||
15 | 15 | */ |
16 | 16 | class Swift_Events_ResponseEvent extends Swift_Events_EventObject |
17 | 17 | { |
18 | - /** |
|
19 | - * The overall result. |
|
20 | - * |
|
21 | - * @var bool |
|
22 | - */ |
|
23 | - private $valid; |
|
18 | + /** |
|
19 | + * The overall result. |
|
20 | + * |
|
21 | + * @var bool |
|
22 | + */ |
|
23 | + private $valid; |
|
24 | 24 | |
25 | - /** |
|
26 | - * The response received from the server. |
|
27 | - * |
|
28 | - * @var string |
|
29 | - */ |
|
30 | - private $response; |
|
25 | + /** |
|
26 | + * The response received from the server. |
|
27 | + * |
|
28 | + * @var string |
|
29 | + */ |
|
30 | + private $response; |
|
31 | 31 | |
32 | - /** |
|
33 | - * Create a new ResponseEvent for $source and $response. |
|
34 | - * |
|
35 | - * @param string $response |
|
36 | - * @param bool $valid |
|
37 | - */ |
|
38 | - public function __construct(Swift_Transport $source, $response, $valid = false) |
|
39 | - { |
|
40 | - parent::__construct($source); |
|
41 | - $this->response = $response; |
|
42 | - $this->valid = $valid; |
|
43 | - } |
|
32 | + /** |
|
33 | + * Create a new ResponseEvent for $source and $response. |
|
34 | + * |
|
35 | + * @param string $response |
|
36 | + * @param bool $valid |
|
37 | + */ |
|
38 | + public function __construct(Swift_Transport $source, $response, $valid = false) |
|
39 | + { |
|
40 | + parent::__construct($source); |
|
41 | + $this->response = $response; |
|
42 | + $this->valid = $valid; |
|
43 | + } |
|
44 | 44 | |
45 | - /** |
|
46 | - * Get the response which was received from the server. |
|
47 | - * |
|
48 | - * @return string |
|
49 | - */ |
|
50 | - public function getResponse() |
|
51 | - { |
|
52 | - return $this->response; |
|
53 | - } |
|
45 | + /** |
|
46 | + * Get the response which was received from the server. |
|
47 | + * |
|
48 | + * @return string |
|
49 | + */ |
|
50 | + public function getResponse() |
|
51 | + { |
|
52 | + return $this->response; |
|
53 | + } |
|
54 | 54 | |
55 | - /** |
|
56 | - * Get the success status of this Event. |
|
57 | - * |
|
58 | - * @return bool |
|
59 | - */ |
|
60 | - public function isValid() |
|
61 | - { |
|
62 | - return $this->valid; |
|
63 | - } |
|
55 | + /** |
|
56 | + * Get the success status of this Event. |
|
57 | + * |
|
58 | + * @return bool |
|
59 | + */ |
|
60 | + public function isValid() |
|
61 | + { |
|
62 | + return $this->valid; |
|
63 | + } |
|
64 | 64 | } |
@@ -15,56 +15,56 @@ |
||
15 | 15 | */ |
16 | 16 | interface Swift_Events_EventDispatcher |
17 | 17 | { |
18 | - /** |
|
19 | - * Create a new SendEvent for $source and $message. |
|
20 | - * |
|
21 | - * @return Swift_Events_SendEvent |
|
22 | - */ |
|
23 | - public function createSendEvent(Swift_Transport $source, Swift_Mime_SimpleMessage $message); |
|
18 | + /** |
|
19 | + * Create a new SendEvent for $source and $message. |
|
20 | + * |
|
21 | + * @return Swift_Events_SendEvent |
|
22 | + */ |
|
23 | + public function createSendEvent(Swift_Transport $source, Swift_Mime_SimpleMessage $message); |
|
24 | 24 | |
25 | - /** |
|
26 | - * Create a new CommandEvent for $source and $command. |
|
27 | - * |
|
28 | - * @param string $command That will be executed |
|
29 | - * @param array $successCodes That are needed |
|
30 | - * |
|
31 | - * @return Swift_Events_CommandEvent |
|
32 | - */ |
|
33 | - public function createCommandEvent(Swift_Transport $source, $command, $successCodes = []); |
|
25 | + /** |
|
26 | + * Create a new CommandEvent for $source and $command. |
|
27 | + * |
|
28 | + * @param string $command That will be executed |
|
29 | + * @param array $successCodes That are needed |
|
30 | + * |
|
31 | + * @return Swift_Events_CommandEvent |
|
32 | + */ |
|
33 | + public function createCommandEvent(Swift_Transport $source, $command, $successCodes = []); |
|
34 | 34 | |
35 | - /** |
|
36 | - * Create a new ResponseEvent for $source and $response. |
|
37 | - * |
|
38 | - * @param string $response |
|
39 | - * @param bool $valid If the response is valid |
|
40 | - * |
|
41 | - * @return Swift_Events_ResponseEvent |
|
42 | - */ |
|
43 | - public function createResponseEvent(Swift_Transport $source, $response, $valid); |
|
35 | + /** |
|
36 | + * Create a new ResponseEvent for $source and $response. |
|
37 | + * |
|
38 | + * @param string $response |
|
39 | + * @param bool $valid If the response is valid |
|
40 | + * |
|
41 | + * @return Swift_Events_ResponseEvent |
|
42 | + */ |
|
43 | + public function createResponseEvent(Swift_Transport $source, $response, $valid); |
|
44 | 44 | |
45 | - /** |
|
46 | - * Create a new TransportChangeEvent for $source. |
|
47 | - * |
|
48 | - * @return Swift_Events_TransportChangeEvent |
|
49 | - */ |
|
50 | - public function createTransportChangeEvent(Swift_Transport $source); |
|
45 | + /** |
|
46 | + * Create a new TransportChangeEvent for $source. |
|
47 | + * |
|
48 | + * @return Swift_Events_TransportChangeEvent |
|
49 | + */ |
|
50 | + public function createTransportChangeEvent(Swift_Transport $source); |
|
51 | 51 | |
52 | - /** |
|
53 | - * Create a new TransportExceptionEvent for $source. |
|
54 | - * |
|
55 | - * @return Swift_Events_TransportExceptionEvent |
|
56 | - */ |
|
57 | - public function createTransportExceptionEvent(Swift_Transport $source, Swift_TransportException $ex); |
|
52 | + /** |
|
53 | + * Create a new TransportExceptionEvent for $source. |
|
54 | + * |
|
55 | + * @return Swift_Events_TransportExceptionEvent |
|
56 | + */ |
|
57 | + public function createTransportExceptionEvent(Swift_Transport $source, Swift_TransportException $ex); |
|
58 | 58 | |
59 | - /** |
|
60 | - * Bind an event listener to this dispatcher. |
|
61 | - */ |
|
62 | - public function bindEventListener(Swift_Events_EventListener $listener); |
|
59 | + /** |
|
60 | + * Bind an event listener to this dispatcher. |
|
61 | + */ |
|
62 | + public function bindEventListener(Swift_Events_EventListener $listener); |
|
63 | 63 | |
64 | - /** |
|
65 | - * Dispatch the given Event to all suitable listeners. |
|
66 | - * |
|
67 | - * @param string $target method |
|
68 | - */ |
|
69 | - public function dispatchEvent(Swift_Events_EventObject $evt, $target); |
|
64 | + /** |
|
65 | + * Dispatch the given Event to all suitable listeners. |
|
66 | + * |
|
67 | + * @param string $target method |
|
68 | + */ |
|
69 | + public function dispatchEvent(Swift_Events_EventObject $evt, $target); |
|
70 | 70 | } |
@@ -15,29 +15,29 @@ |
||
15 | 15 | */ |
16 | 16 | class Swift_Events_TransportExceptionEvent extends Swift_Events_EventObject |
17 | 17 | { |
18 | - /** |
|
19 | - * The Exception thrown. |
|
20 | - * |
|
21 | - * @var Swift_TransportException |
|
22 | - */ |
|
23 | - private $exception; |
|
18 | + /** |
|
19 | + * The Exception thrown. |
|
20 | + * |
|
21 | + * @var Swift_TransportException |
|
22 | + */ |
|
23 | + private $exception; |
|
24 | 24 | |
25 | - /** |
|
26 | - * Create a new TransportExceptionEvent for $transport. |
|
27 | - */ |
|
28 | - public function __construct(Swift_Transport $transport, Swift_TransportException $ex) |
|
29 | - { |
|
30 | - parent::__construct($transport); |
|
31 | - $this->exception = $ex; |
|
32 | - } |
|
25 | + /** |
|
26 | + * Create a new TransportExceptionEvent for $transport. |
|
27 | + */ |
|
28 | + public function __construct(Swift_Transport $transport, Swift_TransportException $ex) |
|
29 | + { |
|
30 | + parent::__construct($transport); |
|
31 | + $this->exception = $ex; |
|
32 | + } |
|
33 | 33 | |
34 | - /** |
|
35 | - * Get the TransportException thrown. |
|
36 | - * |
|
37 | - * @return Swift_TransportException |
|
38 | - */ |
|
39 | - public function getException() |
|
40 | - { |
|
41 | - return $this->exception; |
|
42 | - } |
|
34 | + /** |
|
35 | + * Get the TransportException thrown. |
|
36 | + * |
|
37 | + * @return Swift_TransportException |
|
38 | + */ |
|
39 | + public function getException() |
|
40 | + { |
|
41 | + return $this->exception; |
|
42 | + } |
|
43 | 43 | } |