@@ -38,8 +38,8 @@ discard block |
||
38 | 38 | * @param string $eventName name of the event to listen to |
39 | 39 | * @param \PEIP\INF\Event\Connectable $connectable instance of \PEIP\INF\Event\Connectable to listen to |
40 | 40 | */ |
41 | - protected function doListen($eventName, \PEIP\INF\Event\Connectable $connectable){ |
|
42 | - if(!$connectable->hasListener($eventName, $this)){ |
|
41 | + protected function doListen($eventName, \PEIP\INF\Event\Connectable $connectable) { |
|
42 | + if (!$connectable->hasListener($eventName, $this)) { |
|
43 | 43 | $connectable->connect($eventName, $this); |
44 | 44 | $this->connections[spl_object_hash($connectable)] = $connectable; |
45 | 45 | } |
@@ -52,8 +52,8 @@ discard block |
||
52 | 52 | * @param string $eventName name of the event to unlisten |
53 | 53 | * @param \PEIP\INF\Event\Connectable $connectable instance of \PEIP\INF\Event\Connectable to unlisten to |
54 | 54 | */ |
55 | - protected function doUnlisten($eventName, \PEIP\INF\Event\Connectable $connectable){ |
|
56 | - if(!$connectable->hasListener($eventName, $this)){ |
|
55 | + protected function doUnlisten($eventName, \PEIP\INF\Event\Connectable $connectable) { |
|
56 | + if (!$connectable->hasListener($eventName, $this)) { |
|
57 | 57 | $connectable->disconnect($eventName, $this); |
58 | 58 | unset($this->connections[spl_object_hash($connectable)]); |
59 | 59 | } |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | * @access public |
66 | 66 | * @return array array of \PEIP\INF\Event\Connectable instances |
67 | 67 | */ |
68 | - public function doGetConnected(){ |
|
68 | + public function doGetConnected() { |
|
69 | 69 | return array_values($this->connections); |
70 | 70 | } |
71 | 71 |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | * @subpackage base |
18 | 18 | */ |
19 | 19 | |
20 | -abstract class Connectable implements \PEIP\INF\Event\Connectable{ |
|
20 | +abstract class Connectable implements \PEIP\INF\Event\Connectable { |
|
21 | 21 | |
22 | 22 | const |
23 | 23 | DEFAULT_CLASS_MESSAGE_DISPATCHER = '\PEIP\Dispatcher\Dispatcher', |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * @param Callable|PEIP\INF\Handler\Handler $listener |
43 | 43 | * @return |
44 | 44 | */ |
45 | - public function connect($name, $listener){ |
|
45 | + public function connect($name, $listener) { |
|
46 | 46 | \PEIP\Util\Test::ensureHandler($listener); |
47 | 47 | $this->getEventDispatcher()->connect($name, $this, $listener); |
48 | 48 | $this->doFireEvent( |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | * @param Callable|PEIP\INF\Handler\Handler $listener |
62 | 62 | * @return |
63 | 63 | */ |
64 | - public function disconnect($name, $listener){ |
|
64 | + public function disconnect($name, $listener) { |
|
65 | 65 | \PEIP\Util\Test::ensureHandler($listener); |
66 | 66 | $this->getEventDispatcher()->disconnect($name, $this, $listener); |
67 | 67 | $this->doFireEvent( |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | * @param $name |
83 | 83 | * @return |
84 | 84 | */ |
85 | - public function hasListeners($name){ |
|
85 | + public function hasListeners($name) { |
|
86 | 86 | return $this->getEventDispatcher()->hasListeners($name, $this); |
87 | 87 | } |
88 | 88 | |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | * @param $name |
93 | 93 | * @return |
94 | 94 | */ |
95 | - public function getListeners($name){ |
|
95 | + public function getListeners($name) { |
|
96 | 96 | return $this->getEventDispatcher()->getListeners($name, $this); |
97 | 97 | } |
98 | 98 | |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * @param $callable |
103 | 103 | * @return |
104 | 104 | */ |
105 | - public function disconnectAll($name){ |
|
105 | + public function disconnectAll($name) { |
|
106 | 106 | $this->getEventDispatcher()->disconnectAll($name, $this); |
107 | 107 | } |
108 | 108 | |
@@ -112,11 +112,11 @@ discard block |
||
112 | 112 | * @param $transferListners |
113 | 113 | * @return |
114 | 114 | */ |
115 | - public function setEventDispatcher(\PEIP\Dispatcher\ObjectEventDispatcher $dispatcher, $transferListners = true){ |
|
116 | - if($transferListners){ |
|
117 | - foreach($this->getEventDispatcher()->getEventNames($this) as $name){ |
|
118 | - if($this->getEventDispatcher()->hasListeners($name, $this)){ |
|
119 | - foreach($this->getEventDispatcher()->getListeners($name, $this) as $listener){ |
|
115 | + public function setEventDispatcher(\PEIP\Dispatcher\ObjectEventDispatcher $dispatcher, $transferListners = true) { |
|
116 | + if ($transferListners) { |
|
117 | + foreach ($this->getEventDispatcher()->getEventNames($this) as $name) { |
|
118 | + if ($this->getEventDispatcher()->hasListeners($name, $this)) { |
|
119 | + foreach ($this->getEventDispatcher()->getListeners($name, $this) as $listener) { |
|
120 | 120 | $dispatcher->connect($name, $this, $listener); |
121 | 121 | } |
122 | 122 | } |
@@ -131,11 +131,11 @@ discard block |
||
131 | 131 | * @access public |
132 | 132 | * @return |
133 | 133 | */ |
134 | - public function getEventDispatcher(){ |
|
134 | + public function getEventDispatcher() { |
|
135 | 135 | return $this->eventDispatcher ? $this->eventDispatcher : $this->eventDispatcher = self::getSharedEventDispatcher(); |
136 | 136 | } |
137 | 137 | |
138 | - protected static function getSharedEventDispatcher(){ |
|
138 | + protected static function getSharedEventDispatcher() { |
|
139 | 139 | $defaultDispatcher = self::DEFAULT_CLASS_EVENT_DISPATCHER; |
140 | 140 | return self::$sharedEventDispatcher ? self::$sharedEventDispatcher : self::$sharedEventDispatcher = new $defaultDispatcher; |
141 | 141 | } |
@@ -148,12 +148,12 @@ discard block |
||
148 | 148 | * @param $eventClass |
149 | 149 | * @return |
150 | 150 | */ |
151 | - protected function doFireEvent($name, array $headers = array(), $eventClass = '', $type = false){ |
|
151 | + protected function doFireEvent($name, array $headers = array(), $eventClass = '', $type = false) { |
|
152 | 152 | $eventClass = trim($eventClass) == '' ? static::DEFAULT_EVENT_CLASS : $eventClass; |
153 | 153 | return $this->getEventDispatcher()->buildAndNotify($name, $this, $headers, $eventClass, $type); |
154 | 154 | } |
155 | 155 | |
156 | - protected static function getDefaultEventClass(){ |
|
156 | + protected static function getDefaultEventClass() { |
|
157 | 157 | return self::DEFAULT_EVENT_CLASS; |
158 | 158 | } |
159 | 159 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | * @access public |
33 | 33 | * @return mixed content |
34 | 34 | */ |
35 | - public function getContent(){ |
|
35 | + public function getContent() { |
|
36 | 36 | return parent::getContent(); |
37 | 37 | } |
38 | 38 | } |
39 | 39 | \ No newline at end of file |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | |
23 | 23 | |
24 | 24 | abstract class Container |
25 | - implements \PEIP\INF\Base\Container{ |
|
25 | + implements \PEIP\INF\Base\Container { |
|
26 | 26 | |
27 | 27 | protected $content; |
28 | 28 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * @access public |
34 | 34 | * @return |
35 | 35 | */ |
36 | - public function getContent(){ |
|
36 | + public function getContent() { |
|
37 | 37 | return $this->content; |
38 | 38 | } |
39 | 39 |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * @param $connection |
38 | 38 | * @return |
39 | 39 | */ |
40 | - public function setConnection($connection){ |
|
40 | + public function setConnection($connection) { |
|
41 | 41 | $this->connection = $connection; |
42 | 42 | } |
43 | 43 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | * @access public |
48 | 48 | * @return |
49 | 49 | */ |
50 | - public function execute(){ |
|
50 | + public function execute() { |
|
51 | 51 | return $this->send(); |
52 | 52 | } |
53 | 53 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | * @access public |
57 | 57 | * @return |
58 | 58 | */ |
59 | - public function send(){ |
|
59 | + public function send() { |
|
60 | 60 | return $this->connection->sendRequest($this); |
61 | 61 | } |
62 | 62 | |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | * @access public |
66 | 66 | * @return |
67 | 67 | */ |
68 | - public function getRequestData(){ |
|
68 | + public function getRequestData() { |
|
69 | 69 | return $this->doGetRequestData(); |
70 | 70 | } |
71 | 71 |
@@ -34,7 +34,7 @@ |
||
34 | 34 | * @param $request |
35 | 35 | * @return |
36 | 36 | */ |
37 | - public function sendRequest(\PEIP\ABS\Request\Request $request){ |
|
37 | + public function sendRequest(\PEIP\ABS\Request\Request $request) { |
|
38 | 38 | return $this->doSendRequest($request); |
39 | 39 | } |
40 | 40 |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | EVENT_PRE_RESOLVE = 'pre_resolve', |
35 | 35 | EVENT_POST_RESOLVE = 'post_resolve', |
36 | 36 | EVENT_ERR_RESOLVE = 'err_resolve', |
37 | - HEADER_CHANNEL = 'CHANNEL', |
|
37 | + HEADER_CHANNEL = 'CHANNEL', |
|
38 | 38 | HEADER_CHANNEL_NAME = 'CHANNEL_NAME', |
39 | 39 | HEADER_CHANNEL_RESOLVER = 'HEADER_CHANNEL_RESOLVER'; |
40 | 40 | |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * @param \PEIP\INF\Channel\Channel $inputChannel the input channel for the router |
49 | 49 | * @return |
50 | 50 | */ |
51 | - public function __construct(\PEIP\INF\Channel\Channel_Resolver $channelResolver, \PEIP\INF\Channel\Channel $inputChannel){ |
|
51 | + public function __construct(\PEIP\INF\Channel\Channel_Resolver $channelResolver, \PEIP\INF\Channel\Channel $inputChannel) { |
|
52 | 52 | $this->channelResolver = $channelResolver; |
53 | 53 | $this->setInputChannel($inputChannel); |
54 | 54 | } |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | * @param \PEIP\INF\Channel\Channel_Resolver $channelResolver the channel resolver for the router |
61 | 61 | * @return |
62 | 62 | */ |
63 | - public function setChannelResolver(\PEIP\INF\Channel\Channel_Resolver $channelResolver){ |
|
63 | + public function setChannelResolver(\PEIP\INF\Channel\Channel_Resolver $channelResolver) { |
|
64 | 64 | $this->doFireEvent(self::EVENT_CHANNEL_RESOLVER_SET, array(self::HEADER_CHANNEL_RESOLVER=>$channelResolver)); |
65 | 65 | $this->channelResolver = $channelResolver; |
66 | 66 | $this->doFireEvent(self::EVENT_CHANNEL_RESOLVER_SET, array(self::HEADER_CHANNEL_RESOLVER=>$channelResolver)); |
@@ -73,9 +73,9 @@ discard block |
||
73 | 73 | * @param \PEIP\INF\Message\Message $message the message to reply with |
74 | 74 | * @return |
75 | 75 | */ |
76 | - protected function doReply(\PEIP\INF\Message\Message $message){ |
|
76 | + protected function doReply(\PEIP\INF\Message\Message $message) { |
|
77 | 77 | $channels = (array)$this->selectChannels($message); |
78 | - foreach($channels as $channel){ |
|
78 | + foreach ($channels as $channel) { |
|
79 | 79 | $this->setOutputChannel($this->resolveChannel($channel)); |
80 | 80 | $this->replyMessage($message); |
81 | 81 | } |
@@ -90,12 +90,12 @@ discard block |
||
90 | 90 | * @param mixed $channel channel-name or instance of \PEIP\INF\Channel\Channel |
91 | 91 | * @return |
92 | 92 | */ |
93 | - protected function resolveChannel($channel){ |
|
93 | + protected function resolveChannel($channel) { |
|
94 | 94 | $this->doFireEvent(self::EVENT_PRE_RESOLVE, array(self::HEADER_CHANNEL=>$channel)); |
95 | - if(!($channel instanceof \PEIP\INF\Channel\Channel)){ |
|
95 | + if (!($channel instanceof \PEIP\INF\Channel\Channel)) { |
|
96 | 96 | $channelName = $channel; |
97 | 97 | $channel = $this->channelResolver->resolveChannelName($channelName); |
98 | - if(!$channel){ |
|
98 | + if (!$channel) { |
|
99 | 99 | $this->doFireEvent(self::EVENT_ERR_RESOLVE, array(self::HEADER_CHANNEL_NAME=>$channelName)); |
100 | 100 | throw new \RuntimeException('Could not resolve Channel : '.$channelName); |
101 | 101 | } |
@@ -37,9 +37,9 @@ discard block |
||
37 | 37 | * @param \PEIP\INF\Channel\Channel $outputChannel the outputs-channel |
38 | 38 | * @return |
39 | 39 | */ |
40 | - public function __construct(\PEIP\INF\Channel\Channel $inputChannel, \PEIP\INF\Channel\Channel $outputChannel = NULL){ |
|
40 | + public function __construct(\PEIP\INF\Channel\Channel $inputChannel, \PEIP\INF\Channel\Channel $outputChannel = NULL) { |
|
41 | 41 | $this->setInputChannel($inputChannel); |
42 | - if(is_object($outputChannel)){ |
|
42 | + if (is_object($outputChannel)) { |
|
43 | 43 | $this->setOutputChannel($outputChannel); |
44 | 44 | } |
45 | 45 | } |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * @param \PEIP\INF\Message\Message $message message to transform content |
52 | 52 | * @return |
53 | 53 | */ |
54 | - public function doReply(\PEIP\INF\Message\Message $message){ |
|
54 | + public function doReply(\PEIP\INF\Message\Message $message) { |
|
55 | 55 | $this->replyMessage($this->transform($message)); |
56 | 56 | } |
57 | 57 | |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | * @param \PEIP\INF\Message\Message $message |
63 | 63 | * @return mixed result of transforming the message |
64 | 64 | */ |
65 | - public function transform(\PEIP\INF\Message\Message $message){ |
|
65 | + public function transform(\PEIP\INF\Message\Message $message) { |
|
66 | 66 | return $this->doTransform($message); |
67 | 67 | } |
68 | 68 |
@@ -34,7 +34,7 @@ |
||
34 | 34 | * @param \PEIP\INF\Message\Message $message |
35 | 35 | * @return mixed result of transforming the message payload/content |
36 | 36 | */ |
37 | - protected function doTransform(\PEIP\INF\Message\Message $message){ |
|
37 | + protected function doTransform(\PEIP\INF\Message\Message $message) { |
|
38 | 38 | return $this->transformContent($message->getContent()); |
39 | 39 | } |
40 | 40 |