Completed
Push — v1.ns ( ab319d...410f3f )
by Timo
04:00
created
src/Data/ArrayAccess.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      * @param mixed $offset the offset  
33 33
      * @return 
34 34
      */
35
-    public function offsetExists($offset){
35
+    public function offsetExists($offset) {
36 36
         return array_key_exists($name, $this->values);
37 37
     }   
38 38
        
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      * @param mixed $offset the offset 
44 44
      * @return 
45 45
      */
46
-    public function offsetGet($offset){
46
+    public function offsetGet($offset) {
47 47
         return array_key_exists($name, $this->values) ? $this->values[$offset] : NULL;
48 48
     }
49 49
      
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      * @param mixed $offset the offset 
55 55
      * @return 
56 56
      */
57
-    public function offsetUnset($offset){
57
+    public function offsetUnset($offset) {
58 58
         unset($this->values[$offset]);
59 59
     }   
60 60
   
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      * @param mixed $value value for the offset 
67 67
      * @return 
68 68
      */
69
-    public function offsetSet($offset, $value){
69
+    public function offsetSet($offset, $value) {
70 70
         $this->values[$offset] = $value;
71 71
     }
72 72
 
Please login to merge, or discard this patch.
src/Data/ParameterCollection.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      * @param $offset 
33 33
      * @return 
34 34
      */
35
-    public function offsetExists($offset){
35
+    public function offsetExists($offset) {
36 36
         return $this->hasParameter($offset);
37 37
     }   
38 38
     
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      * @param $offset 
43 43
      * @return 
44 44
      */
45
-    public function offsetGet($offset){
45
+    public function offsetGet($offset) {
46 46
         return $this->getParameter($offset);
47 47
     }
48 48
     
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      * @param $name 
53 53
      * @return 
54 54
      */
55
-    public function offsetUnset($name){
55
+    public function offsetUnset($name) {
56 56
         $this->deleteParameter($name);
57 57
     }   
58 58
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      * @param $name 
64 64
      * @return 
65 65
      */
66
-    public function offsetSet($offset, $name){
66
+    public function offsetSet($offset, $name) {
67 67
         $this->setParameter($offeset, $name);
68 68
     }
69 69
     
Please login to merge, or discard this patch.
src/Data/ParameterHolderCollection.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      * @param $factory 
36 36
      * @return 
37 37
      */
38
-    public function __construct(\PEIP\INF\Factory\DedicatedFactory $factory){
38
+    public function __construct(\PEIP\INF\Factory\DedicatedFactory $factory) {
39 39
         $this->factory = $factory;
40 40
     }
41 41
 
@@ -45,12 +45,12 @@  discard block
 block discarded – undo
45 45
      * @param $namespace 
46 46
      * @return 
47 47
      */
48
-    protected function getParameterHolderOrCreate($namespace){
49
-        if(!$this->hasParameterHolder($namespace)){
48
+    protected function getParameterHolderOrCreate($namespace) {
49
+        if (!$this->hasParameterHolder($namespace)) {
50 50
             $store = $this->factory->build();
51
-            if($store instanceof \PEIP\INF\Data\ParameterHolder){
51
+            if ($store instanceof \PEIP\INF\Data\ParameterHolder) {
52 52
                 $this->stores[$namespace] = $store;
53
-            }else{
53
+            }else {
54 54
                 throw new \Exception('Could not build Instance of \PEIP\INF\Data\ParameterHolder from factory.');
55 55
             }
56 56
         }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      * @param $value 
73 73
      * @return 
74 74
      */
75
-    public function setParameters($namespace, array $parameters){
75
+    public function setParameters($namespace, array $parameters) {
76 76
         $this->getParameterHolderOrCreate($namespace)->setParameters($parameters);
77 77
    }
78 78
   
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      * @param $parameters 
84 84
      * @return 
85 85
      */
86
-    public function addParameters($namespace, array $parameters){
86
+    public function addParameters($namespace, array $parameters) {
87 87
         $this->getParameterHolderOrCreate($namespace)->addParameters($parameters);
88 88
    }
89 89
   
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      * @param $name 
101 101
      * @return 
102 102
      */
103
-    public function getParameters($namespace){
103
+    public function getParameters($namespace) {
104 104
         $this->getParameterHolderOrCreate($namespace)->getParameters();
105 105
    }
106 106
   
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      * @param $name 
112 112
      * @return 
113 113
      */
114
-    public function getParameter($namespace, $name){
114
+    public function getParameter($namespace, $name) {
115 115
         $this->getParameterHolderOrCreate($namespace)->getParameter($name);
116 116
    }
117 117
   
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
      * @param $value 
124 124
      * @return 
125 125
      */
126
-    public function setParameter($namespace, $name, $value){
126
+    public function setParameter($namespace, $name, $value) {
127 127
         $this->getParameterHolderOrCreate($namespace)->setParameters($parameters);
128 128
    }
129 129
   
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
      * @param $name 
135 135
      * @return 
136 136
      */
137
-    public function hasParameter($namespace, $name){
137
+    public function hasParameter($namespace, $name) {
138 138
         $this->getParameterHolderOrCreate($namespace)->hasParameter($name);
139 139
    }
140 140
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
      * @param $name 
146 146
      * @return 
147 147
      */
148
-    public function deleteParameter($namespace, $name){
148
+    public function deleteParameter($namespace, $name) {
149 149
         $this->getParameterHolderOrCreate($namespace)->setParameters($parameters);
150 150
    }
151 151
 
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
      * @param $holder 
165 165
      * @return 
166 166
      */
167
-    public function setParameterHolder($namespace, \PEIP\INF\Data\ParameterHolder $holder){
167
+    public function setParameterHolder($namespace, \PEIP\INF\Data\ParameterHolder $holder) {
168 168
     $this->stores[$namespace] = $holder;
169 169
   } 
170 170
 
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
      * @param $namespace 
182 182
      * @return 
183 183
      */
184
-    public function getParameterHolder($namespace){
184
+    public function getParameterHolder($namespace) {
185 185
     return $this->stores[$namespace];
186 186
   }
187 187
 
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
      * @param $namespace 
199 199
      * @return 
200 200
      */
201
-    public function hasParameterHolder($namespace){
201
+    public function hasParameterHolder($namespace) {
202 202
     return array_key_exists($namespace, $this->stores);
203 203
   }
204 204
 
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
      * @param $namespace 
216 216
      * @return 
217 217
      */
218
-    public function deleteParameterHolder($namespace){
218
+    public function deleteParameterHolder($namespace) {
219 219
     unset($this->stores[$namespace]);
220 220
   } 
221 221
     
Please login to merge, or discard this patch.
src/ABS/Context/ContextPlugin.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,9 +40,9 @@  discard block
 block discarded – undo
40 40
      * @param \PEIP\INF\Context\Context $context context instance to register the plugin with
41 41
      * @return 
42 42
      */
43
-    public function init(\PEIP\INF\Context\Context $context){
43
+    public function init(\PEIP\INF\Context\Context $context) {
44 44
         $this->context = $context;
45
-        foreach($this->builders as $node=>$method){
45
+        foreach ($this->builders as $node=>$method) {
46 46
             $context->registerNodeBuilder($node, array($this, $method));        
47 47
         }   
48 48
     }
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      * @param string $defaultClass class to create instance for if none is set in config
60 60
      * @return object build and modified srvice instance
61 61
      */
62
-    public function buildAndModify($config, $arguments, $defaultClass = false){
62
+    public function buildAndModify($config, $arguments, $defaultClass = false) {
63 63
         return ServiceFactory::buildAndModify($config, $arguments, $defaultClass);
64 64
     }
65 65
 }
Please login to merge, or discard this patch.
src/ABS/Channel/SubscribableChannel.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
 abstract class SubscribableChannel 
31 31
     extends \PEIP\ABS\Channel\Channel
32
-    implements \PEIP\INF\Channel\SubscribableChannel{
32
+    implements \PEIP\INF\Channel\SubscribableChannel {
33 33
 
34 34
     protected $messageDispatcher;   
35 35
        
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      * @param Callable|PEIP\INF\Handler\Handler  $handler the listener to subscribe
42 42
      * @return 
43 43
      */
44
-    public function subscribe($handler){ 
44
+    public function subscribe($handler) { 
45 45
         Test::ensureHandler($handler);
46 46
         $this->getMessageDispatcher()->connect($handler);
47 47
         $this->doFireEvent('subscribe', array('SUBSCRIBER'=>$handler));
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      * @param Callable|PEIP\INF\Handler\Handler  $handler the listener to unsubscribe
56 56
      * @return 
57 57
      */
58
-    public function unsubscribe($handler){
58
+    public function unsubscribe($handler) {
59 59
         Test::ensureHandler($handler);
60 60
         $this->getMessageDispatcher()->disconnect($handler);
61 61
         $this->doFireEvent('unsubscribe', array('SUBSCRIBER'=>$handler));       
@@ -69,9 +69,9 @@  discard block
 block discarded – undo
69 69
      * @param boolean $transferListeners wether to transfer listeners of old dispatcher (if set) to new one. default: true 
70 70
      * @return 
71 71
      */
72
-    public function setMessageDispatcher(\PEIP\INF\Dispatcher\Dispatcher $dispatcher, $transferListeners = true){
73
-        if(isset($this->dispatcher) && $transferListeners){
74
-            foreach($this->dispatcher->getListeners() as $listener){
72
+    public function setMessageDispatcher(\PEIP\INF\Dispatcher\Dispatcher $dispatcher, $transferListeners = true) {
73
+        if (isset($this->dispatcher) && $transferListeners) {
74
+            foreach ($this->dispatcher->getListeners() as $listener) {
75 75
                 $dispatcher->connect($listener);
76 76
                 $this->dispatcher->disconnect($listener);       
77 77
             }   
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      * @access public
86 86
      * @return 
87 87
      */
88
-    public function getMessageDispatcher(){
88
+    public function getMessageDispatcher() {
89 89
         return isset($this->dispatcher) ? $this->dispatcher : $this->dispatcher = new Dispatcher;
90 90
     }   
91 91
     
Please login to merge, or discard this patch.
src/ABS/Channel/PollableChannel.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      * @param $message 
35 35
      * @return 
36 36
      */
37
-    protected function doSend(\PEIP\INF\Message\Message $message){
37
+    protected function doSend(\PEIP\INF\Message\Message $message) {
38 38
         $this->messages[] = $message;        
39 39
     }
40 40
     
@@ -44,17 +44,17 @@  discard block
 block discarded – undo
44 44
      * @param $timeout 
45 45
      * @return 
46 46
      */
47
-    public function receive($timeout = -1){
47
+    public function receive($timeout = -1) {
48 48
         $message = NULL;
49
-        if($timeout == 0){
49
+        if ($timeout == 0) {
50 50
             $message = $this->getMessage(); 
51
-        }elseif($timeout < 0){
52
-            while(!$message = $this->getMessage()){
51
+        }elseif ($timeout < 0) {
52
+            while (!$message = $this->getMessage()) {
53 53
                                 
54 54
             }
55
-        }else{
55
+        }else {
56 56
             $time = time() + $timeout;
57
-            while(($time > time()) && !$message = $this->getMessage()){
57
+            while (($time > time()) && !$message = $this->getMessage()) {
58 58
                 
59 59
             }       
60 60
         }
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      * @access protected
67 67
      * @return 
68 68
      */
69
-    protected function getMessage(){
69
+    protected function getMessage() {
70 70
         return array_shift($this->messages);
71 71
     }
72 72
     
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      * @access public
76 76
      * @return 
77 77
      */
78
-    public function clear(){
78
+    public function clear() {
79 79
         $this->messages = array();
80 80
     }
81 81
     
@@ -85,9 +85,9 @@  discard block
 block discarded – undo
85 85
      * @param $selector 
86 86
      * @return 
87 87
      */
88
-    public function purge(\PEIP\INF\Selector\MessageSelector $selector){
89
-        foreach($this->messages as $key=>$message){
90
-            if(!$selector->acceptMessage($message)){
88
+    public function purge(\PEIP\INF\Selector\MessageSelector $selector) {
89
+        foreach ($this->messages as $key=>$message) {
90
+            if (!$selector->acceptMessage($message)) {
91 91
                 unset($this->messages[$key]);   
92 92
             }
93 93
         }
Please login to merge, or discard this patch.
src/ABS/Channel/Channel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      * @param $name
35 35
      * @return
36 36
      */
37
-    public function __construct($name){
37
+    public function __construct($name) {
38 38
         $this->name = $name;
39 39
     }
40 40
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      * @access public
43 43
      * @return string the channel�s name
44 44
      */
45
-    public function getName(){
45
+    public function getName() {
46 46
         return $this->name;
47 47
     }
48 48
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      * @param integer $timeout
53 53
      * @return
54 54
      */
55
-    public function send(\PEIP\INF\Message\Message $message, $timeout = -1){
55
+    public function send(\PEIP\INF\Message\Message $message, $timeout = -1) {
56 56
         $this->doFireEvent('preSend', array('MESSAGE'=>$message));
57 57
         $sent = $this->doSend($message);
58 58
         $this->doFireEvent('postSend', array(
Please login to merge, or discard this patch.
src/ABS/Pipe/EventPipe.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     
Please login to merge, or discard this patch.
src/ABS/Base/Connectable.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.