Completed
Push — v1.ns ( 0f96a8...6f7a44 )
by Timo
05:20 queued 02:12
created
src/ABS/Base/MutableContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/ABS/Base/Container.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     
Please login to merge, or discard this patch.
src/ABS/Request/Request.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     
Please login to merge, or discard this patch.
src/ABS/Request/Connection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
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
     
Please login to merge, or discard this patch.
src/ABS/Router/Router.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
src/ABS/Transformer/Transformer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/ABS/Transformer/ContentTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/ABS/Command/Command.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      * @access public
41 41
      * @return 
42 42
      */
43
-    public function __invoke(){
43
+    public function __invoke() {
44 44
         return $this->execute();
45 45
     }
46 46
    
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      * @access public
52 52
      * @return 
53 53
      */
54
-    public function execute(){
54
+    public function execute() {
55 55
         return call_user_func_array($this->callable, $this->getParameters());
56 56
     }   
57 57
         
Please login to merge, or discard this patch.
src/ABS/Service/ServiceActivator.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,12 +38,12 @@  discard block
 block discarded – undo
38 38
      * @param \PEIP\INF\Message\Message $message message to handle/reply for
39 39
      * @return 
40 40
      */
41
-    public function doReply(\PEIP\INF\Message\Message $message){
41
+    public function doReply(\PEIP\INF\Message\Message $message) {
42 42
         $res = $this->callService($message);
43 43
         $out = (bool)$message->hasHeader('REPLY_CHANNEL') 
44 44
             ? $message->getHeader('REPLY_CHANNEL') 
45 45
             : $this->outputChannel;    
46
-        if($out){
46
+        if ($out) {
47 47
             $this->replyMessage($res, $res);    
48 48
         }
49 49
     }  
@@ -56,12 +56,12 @@  discard block
 block discarded – undo
56 56
      * @param \PEIP\INF\Message\Message $message message to call the service with it�s content/payload
57 57
      * @return mixed result of calling the registered service callable with message content/payload
58 58
      */
59
-    protected function callService(\PEIP\INF\Message\Message $message){
59
+    protected function callService(\PEIP\INF\Message\Message $message) {
60 60
         $res = NULL;
61
-        if(is_callable($this->serviceCallable)){
61
+        if (is_callable($this->serviceCallable)) {
62 62
             $res = call_user_func($this->serviceCallable, $message->getContent());
63
-        }else{
64
-            if(is_object($this->serviceCallable) && method_exists($this->serviceCallable, 'handle')){
63
+        }else {
64
+            if (is_object($this->serviceCallable) && method_exists($this->serviceCallable, 'handle')) {
65 65
                 $res = $this->serviceCallable->handle($message->getContent());
66 66
             }
67 67
         }    
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $name = is_object($name) ? get_class($name) : (string)$name;
23 23
         if(Test::assertClassOrInterfaceExists($name)){
24 24
             parent::connect($name, $listener);
25
-        }else{
25
+        } else{
26 26
             throw new \InvalidArgumentException($name." is not an Class nor Interface");
27 27
         }
28 28
     }
Please login to merge, or discard this patch.